Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Moatez
Regular Visitor

Include credentials to pass cookies in request header

Hi! ,

 

I have been trying to allow crendetials in my request so i can pass my cookie with my fetch request and already configured my backend ( configured with express session ) with origin as https://app.powerbi.com which is wrong since origin is null inside a sandbox ( i tried to set origin as * include wont work that way )  , Do you guys have any idea how to do this?

 

Fetch request inside my custom visual :

 

public fetch = () => {  
     fetch(
      "http://localhost:3000/api/v1/test",
      {
        method: "GET",
        credentials: "include",   
       
      }
    )
      .then((response) => {
        return response.json();
      })
      .then((test) => console.log(test));
  };

 

Backend cors :

 

server.use(
  cors({
    origin: '*',
    credentials: true,
  }),
);

 

 

0 REPLIES 0

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors