我已经安装了Fabric& Twitter工具包在我的iOS应用程序中,并想知道我需要采取哪些步骤才能从Twitter获取当前的最新趋势。
我环顾四周,有关于此的文档,我有一个端点:https://api.twitter.com/1.1/trends/place.json?id=1但是,这似乎并没有起作用。
这是我用户登录后的代码:
TWTRLogInButton *logInButton = [TWTRLogInButton buttonWithLogInCompletion:^(TWTRSession *session, NSError *error) {
if (session) {
NSLog(@"%@ logged in", [session userName]);
[[PFUser currentUser] setObject:[session userName] forKey:@"twitterLink"];
[[PFUser currentUser]saveInBackground];
//try and get the trending topics
NSURL *topicsURL = [NSURL URLWithString:@"https://api.twitter.com/1.1/trends/place.json?id=1"];
NSData *jsonData = [NSData dataWithContentsOfURL:topicsURL];
if (jsonData == nil) {
//no internet / no data
}
else{
NSLog(@"TOPICS DATA %@", jsonData);
}
}
我认为这个问题与验证用户有关,Twitter工具包只是通过签名来验证用户的api电话吗?