Most of the API methods will require to authenticate with the API. Currently we support OAuth2, Basic Auth and OAuth. OAuth2OAuth 2.0 focuses on client developer simplicity and will be the main authentication mechanism in the future for Poken API.To understand the mechanism and the flows a client should support please check Oauth2 flows Basic AuthBasic Auth sends user credentials in the header of the HTTP request. This makes it easy to use, but insecure and difficult to track. It is also necessary to augment each API request with additional query parameters which identity the application making the call. The parameters "applicationId" and "applicationSecret" should be sent as query parameters to the API with every call made using Basic Auth. For example https://api.poken.com/rest081/account/profile?applicationId=myApplicationId&applicationSecret=myAppSecret OAuthOAuth is a token-passing mechanism that allows users to control which application have access to their data without giving away their passwords. More information on the OAuth specification can be found at oauth.net or in the excellent Beginner's Guide to OAuth. The following is the necessary information required to implement an OAuth consumer. Get Request TokenDescription
URL
ParametersAuthorizeDescription
URL
ParametersGet Access TokenDescription
URL |