I'm working with DotNetOpenAuth version 4.1. And I would like to do oAuth 2.0 ajax calls. With implicit grant this should work? When trying the sample OAuth2,OAuthClient,Implicit grant, the servicecall looks like this:
$.support.cors = true; // force cross-site scripting (as of jQuery 1.5)
function serviceCall(operation, accessToken, label) {
label.text('fetching...');
$.ajax({
url: "http://localhost:65170" + encodeURI(operation),
headers: {
"Authorization": "Bearer " + accessToken
},
cache: false,
success: function (data, textStatus, jqXHR) { label.text(data.toString()); },
error: function (jqXHR, textStatus, errorThrown) { label.text(textStatus + ": " + errorThrown); }
});
};
When I look in the outgoing request header, nothing is set, no Authorization header. This looks like a cross-domain issue when no header information can be set. Only if the ajax call is going to the same server:port this can work?
Is somebody else able to run this sample? Do I miss something? Thanks
Problem solved
Via this link