Wenn Ihre App der weißen Liste wird als https://dev.twitter.com/rest/reference/get/account/verify_credentials vorgeschlagen
oder wie von @Hideo vorgeschlagen
Auf Server-Seite können Sie uns
GET Anfrage für: https://api.twitter.com/1.1/account/verify_credentials.json?include_email=true
mit folgenden Art auth 1.0 http-Header
Authorization: OAuth oauth_consumer_key="KgpUD2nx5UCH9DllSIM4D****",
oauth_nonce="77252745154355061291979480247359",
oauth_signature="jPd5e5Z5ibKDb40JUjAuDVpi9TU%3D",
oauth_signature_method="HMAC-SHA1", oauth_timestamp="1471161684",
oauth_token="76472850016308****-qOqGdpxuVvT7Z7s5n9NFXqzIr11****",
oauth_version="1.0"
Hier oauth_token wird Zugriffstoken erhalten werden, wie hier vorgeschlagen http://oauth.net/core/1.0/#anchor12
Sie folgende Art von Antwort erhalten:
{
"id": 75534037587985****,
"id_str": "75534037587985****",
"name": "tester",
"screen_name": "*********",
"location": "",
"description": "",
"url": null,
"entities": {
"description": {
"urls": []
}
},
"protected": false,
"followers_count": 0,
"friends_count": 19,
"listed_count": 0,
"created_at": "Tue Jul 19 09:55:54 +0000 2016",
"favourites_count": 0,
"utc_offset": null,
"time_zone": null,
"geo_enabled": false,
"verified": false,
"statuses_count": 0,
"lang": "en",
"contributors_enabled": false,
"is_translator": false,
"is_translation_enabled": false,
"profile_background_color": "F5F8FA",
"profile_background_image_url": null,
"profile_background_image_url_https": null,
"profile_background_tile": false,
"profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png",
"profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_4_normal.png",
"profile_link_color": "2B7BB9",
"profile_sidebar_border_color": "C0DEED",
"profile_sidebar_fill_color": "DDEEF6",
"profile_text_color": "333333",
"profile_use_background_image": true,
"has_extended_profile": false,
"default_profile": true,
"default_profile_image": true,
"following": false,
"follow_request_sent": false,
"notifications": false,
"email": "[email protected]"
}
Lassen Sie mich wissen, wenn Sie irgendwelche Bedenken haben.
regenerierende Benutzer Token geholfen, vielen Dank! –