Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hey guys,
I'm building a custom data connector to gets data from an Rest API that doesn't support OAuth, and i was wondering if it is possible for the user to be prompted for some info, like the Base_Url and an Auth_Key on the first use, and then store that info in a text file. Then the connector would read from that file everytime. The prompt could always appear, but if it was pre-filled, that would be awesome.
I made the part that reads from the text file, but i can't figure out a way to make the "user input first" approach, work.
Is there any way to make that using the credentials part of the connector, maybe?
My connector logic is:
GetTable = (ID as text, Params as text) as table =>
let
authKey = LoadFromResource("Auth_Key"), // file Auth_Key.txt
url = LoadFromResource("BaseUrl") & "?id=" & ID & "¶ms=" & Params, // file BaseUrl.txt
options = [Headers=[auth_key= authKey, #"Content-Type"="application/Json"]],
source = Json.Document(Web.Contents(url, options)),
toRecords = Table.FromRecords(source),
expanded = ExpandAllRecords(toRecords)
in
expanded;
[DataSource.Kind="Test1", Publish="Test1.Publish"]
shared Test1.Contents = (ID as text, Params as text) =>
let
source = GetTable(ID, Params)
in
source;Thank you.
You can create an argumented function to get the url as a parameter. Example:
Thisisthefunction = (url as text) =>
let
source = Web.Contents(url)
in
source
Update: i figured out how to prompt only once for the auth_key:
authKey = Extension.CurrentCredential()[Key]
Instead of that LoadFromResource. This way it prompts the user for the key on the first time, and then it stores in PBI, even if you clean the cache.
You have to change this aswell:
Teste1 = [
Authentication = [
Key =
[
Label = " "
]
],
Label = Extension.LoadString("DataSourceLabel")
];Now i'll keep trying for the Base URL.
Hi did you find any method to pass url as parameter
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.