You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The oData service we use requires a Authorization: Bearer <access_token> header for authentication. Can the UI allow us to set temporary header values for metadata endpoint request?
The text was updated successfully, but these errors were encountered:
@unchase Any news? Seems like a simple thing to fix.
Also, could the request check to see if $metadata is already in the URL, if so don't append it to the url? We have oData URLs that we have to append a query string to the URL that contains an auth key.
Have you tried to add an own eventhandler which is called on the connected service SendingRequest2 event? With following code you can add your own headers before the httpmessage is send:
e.RequestMessage.SetHeader("Authorization", "Bearer bladiebla");
The oData service we use requires a
Authorization: Bearer <access_token>
header for authentication. Can the UI allow us to set temporary header values for metadata endpoint request?The text was updated successfully, but these errors were encountered: