diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-03-22 22:43:19 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-03-22 22:43:19 -0700 |
commit | 2a348b9aba991312f93db75a9269702bebbe47c4 (patch) | |
tree | c9e5f8c68d98a20096bb025f85b1214c8690f66d /samples/OAuthClient/SampleWcf2Javascript.js | |
parent | 85b54237afa3886f6a894a94913e988cfdf95795 (diff) | |
download | DotNetOpenAuth-2a348b9aba991312f93db75a9269702bebbe47c4.zip DotNetOpenAuth-2a348b9aba991312f93db75a9269702bebbe47c4.tar.gz DotNetOpenAuth-2a348b9aba991312f93db75a9269702bebbe47c4.tar.bz2 |
Adjusted OAuth 2.0 resource server's port number so as to not conflict with OAuth 1.0 service provider sample.
Diffstat (limited to 'samples/OAuthClient/SampleWcf2Javascript.js')
-rw-r--r-- | samples/OAuthClient/SampleWcf2Javascript.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/OAuthClient/SampleWcf2Javascript.js b/samples/OAuthClient/SampleWcf2Javascript.js index df72938..d894bb7 100644 --- a/samples/OAuthClient/SampleWcf2Javascript.js +++ b/samples/OAuthClient/SampleWcf2Javascript.js @@ -62,7 +62,7 @@ $(document).ready(function () { function serviceCall(operation, accessToken, label) { label.text('fetching...'); $.ajax({ - url: "http://localhost:65169" + encodeURI(operation), + url: "http://localhost:65170" + encodeURI(operation), headers: { "Authorization": "Bearer " + accessToken }, |