Can I get a phone number from Twitter Digits Callback?

Is it possible to get a user's phone number from Twitter? I am using http version and javascript to send SMS with twitter digits.

I only see headers of the following informational headers:

 {"oauth_echo_headers":{"X-Verify-Credentials-Authorization":"OAuth oauth_consumer_key=\"gmoaaZhEG88hMQUdpWHnF1IAz\", oauth_nonce=\"3375731039-FmyAQgjhQG9rljUaXO3jBbiryF7dFQHeVL5oxu4gmoaaZhEG88hMQUdpWHnF1IAz1437035638029\", oauth_signature=\"TTbPlgipWdaNCSblfx0qznz%2B2Fc%3D\", oauth_signature_method=\"HMAC-SHA1\", oauth_timestamp=\"1437035638\", oauth_token=\"3375731039-FmyAQgjhQG9rljUaXO3jBbiryF7dFQHeVL5oxu4\", oauth_version=\"1.0\"","X-Auth-Service-Provider":"https://api.digits.com/1.1/sdk/account.json"}}

      

+3


source to share


2 answers


Once you get the credential authorization header, you can query the server directly to get the attributes from the Digits service. On the docs :

/* Validate and log user in. */
function onLogin(loginResponse){
  // Send headers to your server and validate user by calling Digits’ API
  var oAuthHeaders = loginResponse.oauth_echo_headers;
  var verifyData = {
    authHeader: oAuthHeaders['X-Verify-Credentials-Authorization'],
    apiUrl: oAuthHeaders['X-Auth-Service-Provider']
  };

  $.post('/verify', verifyData)
    .done(function(){ window.reload(); });
}

      



You can see an example of this in action in the Cannonball web demo .

0


source


It might be late, but it can be easily achieved by placing the following code wherever you want to get a phone number:



String phone = Digits.getActiveSession().getPhoneNumber();

      

0


source







All Articles