|
|
(JavaScript) Get Ebay OAuth2 in a Desktop App
Demonstrates how to get a Ebay OAuth2 access token from a desktop application or script.
There are two ways of "minting" an OAuth2 access token.
- The authorization code grant flow (this example) (https://developer.ebay.com/api-docs/static/oauth-authorization-code-grant.html) This is where your app will be accessing another person's eBay account. It's an interactive process and requires the account owner's permission to get the access token the 1st time. After that, it can be refreshed indefinitely without user interaction.
- The client credentials grant flow (https://developer.ebay.com/api-docs/static/oauth-client-credentials-grant.html) This is where you access your own eBay account. It's non-interactive and you can do it in automated services where user-interaction is not possible.
For more information, see https://developer.ebay.com/api-docs/static/oauth-authorization-code-grant.html
var success = false;
// To further clarify, see OAuth 2.0 Authorization Flow
var oauth2 = new CkOAuth2();
// See the Ebay documentation about Access token types
// Also see the Ebay documentation about authorization code grant flow
// Given that Ebay only allows redirect URLs using SSL/TLS, your applicaton must use an intermediate public web server (your own)
// to receive and forward the redirect to localhost.
// See Using Your Web Server as an Intermediary for OAuth2 Redirect to localhost
//
// Ebay is unusual in that it wants the redirect URL indirectly.
// You need to provide the RuName (eBay Redirect URL name)
oauth2.AppCallbackUrl = "Chilkat_Softwar-ChilkatS-Chilka-wxoumqdu";
oauth2.ListenPort = 3017;
oauth2.AuthorizationEndpoint = "https://auth.sandbox.ebay.com/oauth2/authorize";
oauth2.TokenEndpoint = "https://api.sandbox.ebay.com/identity/v1/oauth2/token";
// Replace these with actual values.
oauth2.ClientId = "EBAY_CLIENT_ID";
oauth2.ClientSecret = "EBAY_CLIENT_SECRET";
oauth2.UseBasicAuth = true;
oauth2.CodeChallenge = false;
// The scope query param indicates the access to be provided by the token.
// Multiple scopes can be specified by separating each with a SPACE char.
// See the Ebay OAuth scopes documentation
oauth2.Scope = "https://api.ebay.com/oauth/api_scope https://api.ebay.com/oauth/api_scope/buy.order.readonly https://api.ebay.com/oauth/api_scope/buy.guest.order https://api.ebay.com/oauth/api_scope/sell.marketing.readonly https://api.ebay.com/oauth/api_scope/sell.marketing https://api.ebay.com/oauth/api_scope/sell.inventory.readonly https://api.ebay.com/oauth/api_scope/sell.inventory https://api.ebay.com/oauth/api_scope/sell.account.readonly https://api.ebay.com/oauth/api_scope/sell.account https://api.ebay.com/oauth/api_scope/sell.fulfillment.readonly https://api.ebay.com/oauth/api_scope/sell.fulfillment https://api.ebay.com/oauth/api_scope/sell.analytics.readonly https://api.ebay.com/oauth/api_scope/sell.marketplace.insights.readonly https://api.ebay.com/oauth/api_scope/commerce.catalog.readonly https://api.ebay.com/oauth/api_scope/buy.shopping.cart https://api.ebay.com/oauth/api_scope/buy.offer.auction";
// Begin the OAuth2 three-legged flow. This returns a URL that should be loaded in a browser.
var url = oauth2.StartAuth();
if (oauth2.LastMethodSuccess !== true) {
console.log(oauth2.LastErrorText);
return;
}
console.log("url = " + url);
// Launch the default browser on the system and navigate to the url.
// The LaunchBrowser method was added in Chilkat v10.1.2.
success = oauth2.LaunchBrowser(url);
if (success == false) {
console.log(oauth2.LastErrorText);
return;
}
// Wait for the user to approve or deny authorization in the browser.
var numMsWaited = 0;
while ((numMsWaited < 90000) && (oauth2.AuthFlowState < 3)) {
oauth2.SleepMs(100);
numMsWaited = numMsWaited+100;
}
// If the browser does not respond within the specified time, AuthFlowState will be:
//
// 1: Waiting for Redirect – The OAuth2 background thread is waiting for the browser's redirect request.
// 2: Waiting for Final Response – The thread is awaiting the final access token response.
// In either case, cancel the background task initiated by StartAuth.
if (oauth2.AuthFlowState < 3) {
oauth2.Cancel();
console.log("No response from the browser!");
return;
}
// Check AuthFlowState to determine if authorization was granted, denied, or failed:
//
// 3: Success – OAuth2 flow completed, the background thread exited, and the successful response is in AccessTokenResponse.
// 4: Access Denied – OAuth2 flow completed, the background thread exited, and the error response is in AccessTokenResponse.
// 5: Failure – OAuth2 flow failed before completion, the background thread exited, and error details are in FailureInfo.
if (oauth2.AuthFlowState == 5) {
console.log("OAuth2 failed to complete.");
console.log(oauth2.FailureInfo);
return;
}
if (oauth2.AuthFlowState == 4) {
console.log("OAuth2 authorization was denied.");
console.log(oauth2.AccessTokenResponse);
return;
}
if (oauth2.AuthFlowState !== 3) {
console.log("Unexpected AuthFlowState:" + oauth2.AuthFlowState);
return;
}
console.log("OAuth2 authorization granted!");
console.log("Access Token = " + oauth2.AccessToken);
// Save the full JSON access token response to a file.
var sbJson = new CkStringBuilder();
sbJson.Append(oauth2.AccessTokenResponse);
sbJson.WriteFile("qa_data/tokens/ebay-access-token.json","utf-8",false);
// The full JSON received looks like this:
// {
// "access_token": "v^1.1#i^1#p^3#f^0#I^3#r^0#t^H4sIAAA... 3+fBIAAA==",
// "expires_in": 7200,
// "refresh_token": "v^1.1#i^1#f^0#p^3#r^1#I^3#t^Ul4xMF8wOkIxQzAzQjg1ND ... fMSNFXjEyODQ=",
// "refresh_token_expires_in": 47304000,
// "token_type": "User Access Token"
// }
|