I have API to get Token from PayPal, I am getting the Token through "Postman".
This are the steps Which I followed.
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 ?
This are the steps Which I followed.
- Download Postman for your environment.
- In Postman, select the POST method.
- Enter the https://api.sandbox.paypal.com/v1/oauth2/token request URL.
- 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. - On the Body tab, select x-www-form-urlencoded.
Type grant_type in the key box, and type client_credentials in the value box. - 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: