Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us at FabCon Vienna from September 15-18, 2025, for the ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM. Get registered
I am very new to MS Fabric and at the moment testing it out. I have created a few pipelines that uses basic authentication which works fine.
Now i want to create pipelines that uses clientID, clientSecret and Access Token URL. I have searched youtube videos and Google search but unable to find it.
Can someone please help me with a YouTube video or a guide somewhere that i can use to create pipelines/ELT process with clientID, clientSecret and Access Token URL
Solved! Go to Solution.
Hi @itsAftab,
Thank you for reaching out to the Microsoft Fabric Community Forum.
We really apologies for the inconvenience, I have gone through the details that you have shared based on how to use client id and client secrets to create pipelines.
Please go through the following steps may resolve the issue:
POST <vendor's Access Token URL>
Content-Type: application/x-www-form-urlencoded
client_id=<vendor-client-id>
client_secret=<vendor-client-secret>
grant_type=client_credentials
scope=<vendor-specified-scope>
Replace the placeholders <vendor-client-id>, <vendor-client-secret>, etc. with the actual values provided by the vendor.
If required, set up custom headers or parameters to pass the access token in API requests. For example, use the header:
Authorization: Bearer <access-token>
If this post helps, then please give us Kudos and consider Accept it as a solution to help the other members find it more quickly.
Thank you.
Thank you for the reply
I want to use clientID and clientSecret to retrieve data from an external source. It's a vendor's clientID and clientSecret, not ours
Hi @itsAftab,
Thank you for reaching out to the Microsoft Fabric Community Forum.
We really apologies for the inconvenience, I have gone through the details that you have shared based on how to use client id and client secrets to create pipelines.
Please go through the following steps may resolve the issue:
POST <vendor's Access Token URL>
Content-Type: application/x-www-form-urlencoded
client_id=<vendor-client-id>
client_secret=<vendor-client-secret>
grant_type=client_credentials
scope=<vendor-specified-scope>
Replace the placeholders <vendor-client-id>, <vendor-client-secret>, etc. with the actual values provided by the vendor.
If required, set up custom headers or parameters to pass the access token in API requests. For example, use the header:
Authorization: Bearer <access-token>
If this post helps, then please give us Kudos and consider Accept it as a solution to help the other members find it more quickly.
Thank you.
Hi @itsAftab,
May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.
Thank you.
Hi @itsAftab,
I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions. If my response has addressed your query, please accept it as a solution and give a 'Kudos' so other members can easily find it.
Thankyou.
Hi @itsAftab,
I hope this information is helpful. Please let me know if you have any further questions or if you'd like to discuss this further. If this answers your question, please Accept it as a solution and give it a 'Kudos' so others can find it easily.
Thank you.
Hi @itsAftab,
Thank you for reaching out to the Microsoft Fabric Community Forum.
We really apologies for the inconvenience, after reviewing the issue of how to use Client id and Client secrets to create pipelines, here are few steps to may resolve the issue.
To obtain an access token, utilize the client credentials flow. This involves making a POST request to the token endpoint. Below is an example using http:
POST https://login.microsoftonline.com/{tenant-id}/oauth2/v2.0/token
client_id={your-client-id}
grant_type=client_credentials
scope=https://{resource}.default
client_secret={your-client-secret}
Replace ‘tenant-id’, ‘your-client-id’, ‘resource’, and ‘your-client-secret’ with your actual values.
If this post helps, then please give us Kudos and consider Accept it as a solution to help the other members find it more quickly.
Thank you.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Fabric update to learn about new features.
User | Count |
---|---|
9 | |
5 | |
4 | |
3 | |
2 |