请告诉我从twitter集成中获取电子邮件地址的过程是什么?我是通过面料做到的。为获取电子邮件地址,我遵循https://support.twitter.com/forms/platform给出的所有说明。并从twitter获取电子邮件。 你能帮助我进一步处理吗? 我遵循这段代码。
[[Twitter sharedInstance] logInWithCompletion:^(TWTRSession *session, NSError *error) {
if (session) {
NSLog(@"signed in as %@", [session userName]);
NSLog(@"signed in as %@", [session userID]);
[self usersShow:[session userID]];
TWTRAPIClient *client = [TWTRAPIClient clientWithCurrentUser];
NSURLRequest *request = [client URLRequestWithMethod:@"GET"
URL:@"https://api.twitter.com/1.1/account/verify_credentials.json"
parameters:@{@"include_email": @"true", @"skip_status": @"true"}
error:nil];
[client sendTwitterRequest:request completion:^(NSURLResponse *response, NSData *data, NSError *connectionError) {
NSLog(@"tMail%@",response);
}];
} else {
NSLog(@"error: %@", [error localizedDescription]);
}
}];
我收到了这个回复:
{
"contributors_enabled" = 0;
"created_at" = "Wed Nov 30 11:39:55 +0000 2011";
"default_profile" = 1;
"default_profile_image" = 0;
description = "Software developer";
entities = {
description = {
urls = (
);
};
};
"favourites_count" = 2;
"follow_request_sent" = 0;
"followers_count" = 6;
following = 0;
"friends_count" = 12;
"geo_enabled" = 0;
"has_extended_profile" = 0;
id = 424967484;
"id_str" = 424967484;
"is_translation_enabled" = 0;
"is_translator" = 0;
lang = en;
"listed_count" = 0;
location = "Nokha, Rajasthan";
name = "Muraree pareek";
notifications = 0;
"profile_background_color" = C0DEED;
"profile_background_image_url" = "http://abs.twimg.com/images/themes/theme1/bg.png";
"profile_background_image_url_https" = "https://abs.twimg.com/images/themes/theme1/bg.png";
"profile_background_tile" = 0;
"profile_banner_url" = "https://pbs.twimg.com/profile_banners/424967484/1432039697";
"profile_image_url" = "http://pbs.twimg.com/profile_images/1667595088/Image0236_normal.jpg";
"profile_image_url_https" = "https://pbs.twimg.com/profile_images/1667595088/Image0236_normal.jpg";
"profile_link_color" = 0084B4;
"profile_sidebar_border_color" = C0DEED;
"profile_sidebar_fill_color" = DDEEF6;
"profile_text_color" = 333333;
"profile_use_background_image" = 1;
protected = 0;
"screen_name" = Murareepareek;
"statuses_count" = 3;
"time_zone" = "New Delhi";
url = "<null>";
"utc_offset" = 19800;
verified = 0;
}
答案 0 :(得分:2)
1)通过您的开发者帐户,您必须向Twitter提交请求,以便将您的应用“白名单”,以便您可以检索特定用户的电子邮件。这是一种安全检查,因为美国的用户数据的历史被非法出售给第三方,因此Twitter保护其用户免受强制广告,垃圾邮件以及可能使用户烦恼的电子邮件地址的任何可能。 / p>
https://dev.twitter.com/rest/reference/get/account/verify_credentials272
“请求用户的电子邮件地址要求您的应用程序被Twitter列入白名单。要请求访问权限,请使用此表单。” 表格:https://support.twitter.com/forms/platform394
希望这能帮到你!