Hi @majoritasdev,
Thanks.
It works. Able to call other Ads API’s using Advertisers Access and Secret Token.
Step involved:
Step #1: Obtaining a request token
API Call : POST oauth/request_token
Step #2: Redirecting the user
API Call : GET oauth/authenticate – Passed the oauth_token which i got from Step1
Step #3: Converting the request token to an access token
API Call : POST oauth/access_token – Sent both PIN(from the response of Step 2) and oauth_token(From the response of Step 1)
Now i able to call Ads api with my consumer key along with tokens(From the response of step 3)
Reference
https://dev.twitter.com/web/sign-in/implementing
Thanks much.