3

是否可以从 Twitter Digits 回调中获取用户的电话号码?我正在使用 http 版本和 javascript 发送带有 twitter 数字的 SMS。

我只看到下一个信息响应标头:

 {"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"}}
4

2 回答 2

1

可能为时已晚,但可以通过将以下代码放在要获取电话号码的任何位置来轻松实现:

String phone = Digits.getActiveSession().getPhoneNumber();
于 2017-05-14T20:35:42.697 回答
1

收到凭证授权标头后,您可以直接查询服务器以接收来自 Digits 服务的属性。根据文档

/* 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(); });
}

您可以在Cannonball 网络演示中看到这个示例。

于 2016-08-29T19:15:34.420 回答