<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Http requests in Fabric Notebook in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Http-requests-in-Fabric-Notebook/m-p/4677171#M9022</link>
    <description>&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/598190"&gt;@pbi_taken&lt;/a&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;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 "&lt;/SPAN&gt;&lt;STRONG&gt;Accept&amp;nbsp; as&amp;nbsp; Solution&lt;/STRONG&gt;&lt;SPAN&gt;" and give a '&lt;/SPAN&gt;&lt;STRONG&gt;Kudos&lt;/STRONG&gt;&lt;SPAN&gt;' so other members can easily find it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Pavan.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 02 May 2025 09:07:24 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2025-05-02T09:07:24Z</dc:date>
    <item>
      <title>Http requests in Fabric Notebook</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Http-requests-in-Fabric-Notebook/m-p/4653145#M8593</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm trying get my activites from the strava API in a Fabric notebook. I've followed all the instructions and it works fine.&lt;/P&gt;&lt;P&gt;One issue I have is that I would like to automate getting data. What is holding me back is a code I need to get from the url I click on a authorize button from this website:&amp;nbsp;&lt;A href="https://www.strava.com/oauth/authorize?client_id=40820&amp;amp;redirect_uri=http%3A%2F%2Flocalhost%3A8000%2Fcallback&amp;amp;response_type=code&amp;amp;scope=activity%3Aread_all" target="_blank" rel="noopener"&gt;strava.com/oauth/authorize?client_id=[CLIENT_ID]&amp;amp;redirect_uri=http%3A%2F%2Flocalhost%3A8000%2Fcallback&amp;amp;response_type=code&amp;amp;scope=activity%3Aread_all&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;That brings me to a localhost callback page where I extract the code from the url and put in my code.&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;P&gt;This is where I use the code..&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;LI-CODE lang="markup"&gt;training = requests.post(
    'https://www.strava.com/oauth/token',
    data = {
        'client_id': client_id,
        'client_secret': client_secret,
        'code': code,
        'grant_type': 'authorization_code'
    }
)&lt;/LI-CODE&gt;&lt;P&gt;Is there a way to to this action in a fabric notebook? From what I've seen is that trigger this, but would be so happy if anyone could help me.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Apr 2025 07:27:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Http-requests-in-Fabric-Notebook/m-p/4653145#M8593</guid>
      <dc:creator>pbi_taken</dc:creator>
      <dc:date>2025-04-15T07:27:26Z</dc:date>
    </item>
    <item>
      <title>Re: Http requests in Fabric Notebook</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Http-requests-in-Fabric-Notebook/m-p/4653506#M8597</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/598190"&gt;@pbi_taken&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thank you for reaching out in Microsoft Community Forum.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Use Strava’s refresh token flow to automate getting new access tokens — no need to manually get the authorization code every time.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Please follow below steps to resolve the issue;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;1.Manually authorize once using the URL → get:&lt;/P&gt;
&lt;P&gt;access_token&lt;/P&gt;
&lt;P&gt;refresh_token&lt;/P&gt;
&lt;P&gt;expires_at&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;2.In your Fabric notebook, use this refresh_token to automatically get a new access_token:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;response = requests.post(&lt;BR /&gt;'&lt;A href="https://www.strava.com/oauth/token" target="_blank"&gt;https://www.strava.com/oauth/token&lt;/A&gt;',&lt;BR /&gt;data={&lt;BR /&gt;'client_id': client_id,&lt;BR /&gt;'client_secret': client_secret,&lt;BR /&gt;'grant_type': 'refresh_token',&lt;BR /&gt;'refresh_token': refresh_token&lt;BR /&gt;}&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;3.Use the new access_token to call Strava APIs.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Please continue using Microsoft community forum.&lt;BR /&gt;&lt;BR /&gt;If you found this post helpful, please consider marking it as "&lt;STRONG&gt;Accept as Solution&lt;/STRONG&gt;" and give it a '&lt;STRONG&gt;Kudos&lt;/STRONG&gt;'. if it was helpful. help other members find it more easily.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Pavan.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Apr 2025 10:19:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Http-requests-in-Fabric-Notebook/m-p/4653506#M8597</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-04-15T10:19:49Z</dc:date>
    </item>
    <item>
      <title>Re: Http requests in Fabric Notebook</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Http-requests-in-Fabric-Notebook/m-p/4653548#M8601</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks! I've tried this now. just changing my code with what you suggested. Doesn't seem to work when converting it to a dataframe..&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any idea why?&lt;/P&gt;&lt;P&gt;My code is below..&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;response = requests.post(
    'https://www.strava.com/oauth/token',
    data={
        'client_id': client_id,
        'client_secret': client_secret,
        'grant_type': 'refresh_token',
        'refresh_token': refresh_token
}
)

token_response = response.json()
access_token = token_response['access_token']

headers_act = {
    'Authorization': f'Bearer {access_token}'
}

training_response = requests.get('https://www.strava.com/api/v3/athlete/activities', headers=headers_act)

activities = training_response.json()

df_pd = pd.DataFrame(activities)
print(df_pd)
message                                             errors
0  Authorization Error  {'resource': 'AccessToken', 'field': 'activity...&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 15 Apr 2025 10:41:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Http-requests-in-Fabric-Notebook/m-p/4653548#M8601</guid>
      <dc:creator>pbi_taken</dc:creator>
      <dc:date>2025-04-15T10:41:21Z</dc:date>
    </item>
    <item>
      <title>Re: Http requests in Fabric Notebook</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Http-requests-in-Fabric-Notebook/m-p/4653711#M8604</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/598190"&gt;@pbi_taken&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thank you for reaching out in Microsoft Community Forum.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Please follow below troubleshooting steps to resolve the error;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;1.Print the response from the token refresh request to verify you're receiving a valid access_token. Use print(response.json()).&lt;/P&gt;
&lt;P&gt;2.Make sure the refresh token is valid and hasn’t expired. If it's invalid, you'll need to go through the authorization flow again.&lt;/P&gt;
&lt;P&gt;3.Make sure that the access_token has the necessary permissions (scopes) to access the Strava API endpoint, such as activity:read_all.&lt;/P&gt;
&lt;P&gt;4.Add error handling to both the token refresh request and activities request to catch and print any errors, and check the status_code for any issues:&lt;BR /&gt;&lt;BR /&gt;if response.status_code != 200:&lt;BR /&gt;print(f"Error: {response.status_code}")&lt;BR /&gt;print(response.json())&lt;/P&gt;
&lt;P&gt;Please continue using Microsoft community forum.&lt;BR /&gt;&lt;BR /&gt;If you found this post helpful, please consider marking it as "&lt;STRONG&gt;Accept as Solution&lt;/STRONG&gt;" and give it a '&lt;STRONG&gt;Kudos&lt;/STRONG&gt;'. if it was helpful. help other members find it more easily.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Pavan.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Apr 2025 11:35:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Http-requests-in-Fabric-Notebook/m-p/4653711#M8604</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-04-15T11:35:50Z</dc:date>
    </item>
    <item>
      <title>Re: Http requests in Fabric Notebook</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Http-requests-in-Fabric-Notebook/m-p/4653857#M8609</link>
      <description>&lt;P&gt;this url:&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.strava.com/api/v3/athlete/activities" target="_blank"&gt;'strava.com/api/v3/athlete/activities&lt;/A&gt;'&lt;/P&gt;&lt;P&gt;which I need i requires both access_token and code, which is what I'm getting from the localhost url... This is what I'm getting without inputting code..&lt;/P&gt;&lt;PRE&gt;{"message":"Authorization Error","errors":[{"resource":"Athlete","field":"access_token","code":"invalid"}]}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;from what i understand, there is no way of getting around that..&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Apr 2025 12:22:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Http-requests-in-Fabric-Notebook/m-p/4653857#M8609</guid>
      <dc:creator>pbi_taken</dc:creator>
      <dc:date>2025-04-15T12:22:56Z</dc:date>
    </item>
    <item>
      <title>Re: Http requests in Fabric Notebook</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Http-requests-in-Fabric-Notebook/m-p/4662088#M8756</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/598190"&gt;@pbi_taken&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thank you for reaching out in Microsoft Community Forum.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;You do not need the original code again once you've received the refresh_token from the first manual authorization.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Please use the below steps to automate;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;1.Use the refresh_token to get a new access_token:&lt;/P&gt;
&lt;P&gt;response = requests.post(&lt;BR /&gt;'&lt;A href="https://www.strava.com/oauth/token" target="_blank"&gt;https://www.strava.com/oauth/token&lt;/A&gt;',&lt;BR /&gt;data={&lt;BR /&gt;'client_id': client_id,&lt;BR /&gt;'client_secret': client_secret,&lt;BR /&gt;'grant_type': 'refresh_token',&lt;BR /&gt;'refresh_token': refresh_token&lt;BR /&gt;}&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;2.Use only the access_token from that response to call Strava’s API:&lt;/P&gt;
&lt;P&gt;headers = {'Authorization': f'Bearer {access_token}'}&lt;BR /&gt;requests.get('&lt;A href="https://www.strava.com/api/v3/athlete/activities" target="_blank"&gt;https://www.strava.com/api/v3/athlete/activities&lt;/A&gt;', headers=headers)&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Please continue using Microsoft community forum.&lt;BR /&gt;&lt;BR /&gt;If you found this post helpful, please consider marking it as "&lt;STRONG&gt;Accept as Solution&lt;/STRONG&gt;" and give it a '&lt;STRONG&gt;Kudos&lt;/STRONG&gt;'. if it was helpful. help other members find it more easily.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Pavan.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Apr 2025 04:30:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Http-requests-in-Fabric-Notebook/m-p/4662088#M8756</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-04-22T04:30:36Z</dc:date>
    </item>
    <item>
      <title>Re: Http requests in Fabric Notebook</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Http-requests-in-Fabric-Notebook/m-p/4662552#M8762</link>
      <description>&lt;P&gt;I really appreciate your help, but I still can't see a way around this..&amp;nbsp;&lt;BR /&gt;according to strava documentation you need the code:&amp;nbsp;&lt;A href="https://developers.strava.com/docs/getting-started/" target="_blank"&gt;Strava Developers&lt;/A&gt;.&lt;BR /&gt;trying what you suggested just results for me in a&amp;nbsp;&lt;SPAN&gt;&amp;lt;Response [401]&amp;gt;..&lt;BR /&gt;Hmm really wish someone else has done this successfully in the past..&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Apr 2025 07:58:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Http-requests-in-Fabric-Notebook/m-p/4662552#M8762</guid>
      <dc:creator>pbi_taken</dc:creator>
      <dc:date>2025-04-22T07:58:00Z</dc:date>
    </item>
    <item>
      <title>Re: Http requests in Fabric Notebook</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Http-requests-in-Fabric-Notebook/m-p/4667635#M8845</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/598190"&gt;@pbi_taken&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thank you for reaching out in Microsoft Community Forum.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Please follow below steps to Automating Strava API Data Access in Fabric Notebook&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;1.The code from the Strava OAuth flow is only needed once to retrieve the initial access_token and refresh_token. After that, you should use the refresh_token to keep getting new access_tokens without requiring the code again.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;2.Replace grant_type = 'authorization_code' with grant_type = 'refresh_token' and call the token endpoint:&lt;/P&gt;
&lt;P&gt;response = requests.post(&lt;BR /&gt;'&lt;A href="https://www.strava.com/oauth/token" target="_blank" rel="noopener"&gt;https://www.strava.com/oauth/token&lt;/A&gt;',&lt;BR /&gt;data={&lt;BR /&gt;'client_id': client_id,&lt;BR /&gt;'client_secret': client_secret,&lt;BR /&gt;'grant_type': 'refresh_token',&lt;BR /&gt;'refresh_token': refresh_token&lt;BR /&gt;}&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;3.If you're getting 401 errors, check the access_token permissions. You must have activity:read_all scope granted during the initial authorization. If the token lacks required scopes, reauthorize manually with:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.strava.com/oauth/authorize?client_id=YOUR_CLIENT_ID&amp;amp;redirect_uri=http://localhost&amp;amp;response_type=code&amp;amp;scope=activity:read_all" target="_blank" rel="noopener"&gt;https://www.strava.com/oauth/authorize?client_id=YOUR_CLIENT_ID&amp;amp;redirect_uri=http://localhost&amp;amp;response_type=code&amp;amp;scope=activity:read_all&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;4.Add debugging for response.status_code and print response.json() to catch and understand errors:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;if response.status_code != 200:&lt;BR /&gt;print("Error during token fetch:", response.status_code, response.json())&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;If the issue still persists,In this scenario we suggest you to raise a support ticket here. so, that they can assit you in addressing the issue you are facing. please follow below link on how to raise a support ticket:&lt;/P&gt;
&lt;P&gt;&lt;A class="" title="https://learn.microsoft.com/en-us/power-bi/support/create-support-ticket" href="https://learn.microsoft.com/en-us/power-bi/support/create-support-ticket" target="_blank" rel="noreferrer noopener nofollow" aria-label="Link How to create a Fabric and Power BI Support ticket - Power BI | Microsoft Learn"&gt;How to create a Fabric and Power BI Support ticket - Power BI | Microsoft Learn&lt;BR /&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jun 2025 11:54:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Http-requests-in-Fabric-Notebook/m-p/4667635#M8845</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-06-10T11:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: Http requests in Fabric Notebook</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Http-requests-in-Fabric-Notebook/m-p/4677171#M9022</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/598190"&gt;@pbi_taken&lt;/a&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;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 "&lt;/SPAN&gt;&lt;STRONG&gt;Accept&amp;nbsp; as&amp;nbsp; Solution&lt;/STRONG&gt;&lt;SPAN&gt;" and give a '&lt;/SPAN&gt;&lt;STRONG&gt;Kudos&lt;/STRONG&gt;&lt;SPAN&gt;' so other members can easily find it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Pavan.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 May 2025 09:07:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Http-requests-in-Fabric-Notebook/m-p/4677171#M9022</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-05-02T09:07:24Z</dc:date>
    </item>
    <item>
      <title>Re: Http requests in Fabric Notebook</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Http-requests-in-Fabric-Notebook/m-p/4679947#M9061</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/598190"&gt;@pbi_taken&lt;/a&gt;,&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;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, kindly "&lt;STRONG&gt;A&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;ccept &amp;nbsp;as&amp;nbsp; Solution"&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;and give it a '&lt;/SPAN&gt;&lt;STRONG&gt;Kudos&lt;/STRONG&gt;&lt;SPAN&gt;' so others can find it easily.&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you,&lt;BR /&gt;Pavan.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 05 May 2025 10:14:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Http-requests-in-Fabric-Notebook/m-p/4679947#M9061</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-05-05T10:14:23Z</dc:date>
    </item>
    <item>
      <title>Re: Http requests in Fabric Notebook</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Http-requests-in-Fabric-Notebook/m-p/4685843#M9165</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/598190"&gt;@pbi_taken&lt;/a&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I wanted to follow up since we haven't heard back from you regarding our last response. We hope your issue has been resolved.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If the community member's answer your query, please mark it as "&lt;/SPAN&gt;&lt;STRONG&gt;Accept as Solution&lt;/STRONG&gt;&lt;SPAN&gt;" and select "&lt;/SPAN&gt;&lt;STRONG&gt;Yes&lt;/STRONG&gt;&lt;SPAN&gt;" if it was helpful.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If you need any further assistance, feel free to reach out.&lt;BR /&gt;&lt;BR /&gt;Please continue using Microsoft community forum.&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Pavan.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 09 May 2025 04:25:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Http-requests-in-Fabric-Notebook/m-p/4685843#M9165</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-05-09T04:25:55Z</dc:date>
    </item>
  </channel>
</rss>

