Android Question HTTP Wrapping To Get PAYPAL Token

nazilabdulla

Member
Licensed User
Longtime User
I have API to get Token from PayPal, I am getting the Token through "Postman".

This are the steps Which I followed.

  1. Download Postman for your environment.
  2. In Postman, select the POST method.
  3. Enter the https://api.sandbox.paypal.com/v1/oauth2/token request URL.
  4. On the Authorization tab, select the Basic Auth type.
    Type your client ID in the Username box, and type your secret in the Password box.
  5. On the Body tab, select x-www-form-urlencoded.
    Type grant_type in the key box, and type client_credentials in the value box.
  6. Click Send.

Reference : https://developer.paypal.com/docs/api/get-an-access-token-postman/

This is working with postman Application. How can I do it in our HttpJob ?
 
Last edited:
Top