雅虎认证&获取个人资料详情iOS

时间:2014-01-03 10:21:24

标签: ios objective-c yahoo-api

我在此处列出了 Yahoo Integration步骤,我已经跟踪过了。

  • 步骤1.我去了http://developer.yahoo.com/social/sdk/objectivec/
  • 第2步。从此处下载整个框架 - http://github.com/yahoo/yos-social-objc
  • 第3步。我做了Drag&将该框架放入我的项目中。
  • 步骤4.为yahoo框架文件启用标记fno-objc-arc
  • 步骤5.我在viewController的头文件中做了#import "YOSSocial.h"
  • 步骤6.在视图中加载时,我放置了代码块1 来创建会话对象。
  • 步骤7.点击按钮,我调用代码块2
  • 步骤8.在AppDelegate.m中,我将方法实现为代码块3
  • 第9步。我收到oauth_token&重定向oauth_verifier

代码块1

 - (void)viewDidLoad {
    [super viewDidLoad];
    self.session = [YOSSession sessionWithConsumerKey:@"ConsumerKeyHere"
                                           andConsumerSecret:@"ConsumerSecretKeyHere"
                                            andApplicationId:@"AppKey"];
    BOOL hasSession = [self.session resumeSession];
    if(hasSession == FALSE) {
        // custom call back URL which will redirect to our-app.
        // 10.0.0.76/iOS/callback.php redirects 
        // to com.mymobileapps.currentApp.yahoo
        [self.session 
           sendUserToAuthorizationWithCallbackUrl:
           @"http://10.0.0.76/iOS/callback.php"];
    } else {
        [self sendRequests];
    }
}

代码块2

- (void)sendRequests {
    // initialize a user request for the logged-in user
    YOSUserRequest *request = [YOSUserRequest requestWithSession:self.session];

    // fetch the user's profile data
    [request fetchProfileWithDelegate:self];
}

- (void)requestDidFinishLoading:(YOSResponseData *)data {
    // parse the response text string into a dictionary
    NSDictionary *rspData = [NSJSONSerialization JSONObjectWithData:[data.responseText dataUsingEncoding:NSUTF8StringEncoding] options:NSJSONReadingAllowFragments error:nil];
    NSDictionary *profileData = [rspData objectForKey:@"profile"];

    // format a string using the nickname object from the profile.
    NSString *welcomeText = [NSString stringWithFormat:@"Hey %@ %@!",
                             [profileData objectForKey:@"givenName"],
                             [profileData objectForKey:@"familyName"]];
    NSLog(@"welcometext is %@",welcomeText);
    self.lblProfile.text = welcomeText;
}

代码区块3

- (BOOL)application: (UIApplication *)application
            openURL: (NSURL *)url
  sourceApplication: (NSString *)sourceApplication
         annotation: (id)annotation {
    NSString *str = [[url description] stringByReplacingOccurrencesOfString:@"com.mymobileapps.currentApp.yahoo://oauth-response?oauth_token=" withString:@""];
    NSArray *ar = [str componentsSeparatedByString:@"&oauth_verifier="];
    NSLog(@"oauth_token is %@",[ar objectAtIndex:0]);
    NSLog(@"oauth_verifier is %@",[ar objectAtIndex:1]);
    // How my session will get updated now with valid authentication done?
    return YES;
}

我跟着每个&这里描述的每一步 - http://developer.yahoo.com/social/sdk/objectivec/&我还实现了这里描述的重定向 - How to redirect from Yahoo to my IOS app after authentication?

问题如下。 我仍然无法获取性别,出生日期等用户个人资料详情。也就是说 - 从代码区块2 ,我收到的数据为零。

我的代码中缺少什么来检索用户个人资料的数据?

其他参考。

- (BOOL)application: (UIApplication *)application
            openURL: (NSURL *)url
  sourceApplication: (NSString *)sourceApplication
         annotation: (id)annotation {
    return [GPPURLHandler handleURL:url
                  sourceApplication:sourceApplication
                         annotation:annotation];
}

以上代码说明了Google+框架如何处理重定向&管理本地会话。如果是Yahoo,我找不到任何有助于更新移动应用程序本地会话的详细信息。

编辑:
如果无法通过Yahoo OAuth,如何从雅虎获取基本个人资料详细信息(如性别,出生日期,电子邮件ID,姓名等)?

4 个答案:

答案 0 :(得分:2)

这是解决方案。

注意:您需要一台中间服务器。

  • 步骤01。下载PHP yahoo framework http://github.com/yahoo/yos-social-php
  • 步骤02。启动WAMP / XAMPP服务器。
  • 步骤03。获取网址
    • 示例 - http://10.0.0.76/iOS/yos-social-php-master/sample/sampleapp.php
  • 步骤04。返回XCode项目。
  • 步骤05。打开XIB,为Yahoo&连接IBAction方法。
  • 步骤06。在IBAction方法中,导航到从iOS App到URL的获取URL。请参阅代码块1
  • 步骤07。在AppDelegate.m中添加方法,用于处理从服务器到移动应用的重定向。请参阅代码块2
  • 步骤08。确保您的应用能够处理重定向。打开project-info.plist作为源代码&确保您有效URL typesURL identifier& URL Schemes。如代码块3
  • 中所示
  • 步骤09。现在您的移动应用已准备好从服务器重定向。
  • 第10步。打开yourLocalServer/iOS/yos-social-php-master/sample/sampleapp.php文件。 (https://github.com/yahoo/yos-social-php/blob/master/sample/sampleapp.php
  • 第11步。评论代码从97到106。
  • 第12步。按照代码块4
  • 中的说明输入代码
  • 第13步。运行您的项目,点击iOS App。按钮。
  • 第14步。应用将导航到您的网站页面。网站页面将进行身份验证和获取个人资料详情。
  • 第15步。认证完成后,网站页面会重定向回您的移动应用,其详细信息包括:性别,全名,出生日期,guid,个人资料图片网址等

摘要

移动应用导航到服务器 - >服务器通过OAuth-php管理身份验证。经过身份验证的服务器检索配置文件详细信息和服务器指示safari导航回 - your-mobile-App。您的移动应用程序获取代码块中的所有详细信息

代码块1

- (IBAction)connectYahoo:(id)sender {
      [[UIApplication sharedApplication] 
           openURL:[NSURL URLWithString:
           @"http://yourLocalServer/iOS/yos-social-php-master/sample/sampleapp.php"
      ]];
}

代码区块2

- (BOOL)application:(UIApplication *)application
        openURL:(NSURL *)url
   sourceApplication:(NSString *)sourceApplication
     annotation:(id)annotation {

    if([[url scheme] isEqualToString:@"com.yourcompany.app.fsq"]) {
        return [self.obj_LoginHomeVCtr.foursquare handleOpenURL:url];
    } else if([[url scheme] isEqualToString:@"com.yourcompany.app.googleplus"]){
        return [GPPURLHandler handleURL:url
                  sourceApplication:sourceApplication
                         annotation:annotation];

    }else if([[url scheme] isEqualToString:@"fb188315544652080"]){
        return [FBAppCall handleOpenURL:url
                  sourceApplication:sourceApplication
                    fallbackHandler:^(FBAppCall *call) {
                        NSLog(@"In fallback handler");
                    }];
    } else if ([[url scheme] isEqualToString:@"com.yourcompany.app.yahoo"]){
        STLog(@"URL is %@",url);
        return YES;
    }
    return YES;
}

代码区块3

<key>CFBundleURLTypes</key>
<array>
    <dict>
        <key>CFBundleTypeRole</key>
        <string>Editor</string>
        <key>CFBundleURLName</key>
        <string>com.yourcompany.app.yahoo</string>
        <key>CFBundleURLSchemes</key>
        <array>
            <string>com.yourcompany.app.yahoo</string>
        </array>
    </dict>
</array>

代码块4

  else if($hasSession && $profile) {
      $string = "com.yourcompany.app.yahoo://response?birthdate=" . $profile->birthdate . "&familyName=" . $profile->familyName. " " . $profile->givenName . "&gender=" . $profile->gender . "&guid=" . $profile->guid . "&image=" . $profile->image->imageUrl;
      echo '<meta http-equiv="Refresh" content="1;URL='. $string .'">';
  }
?>

答案 1 :(得分:1)

fetchProfileWithDelegate:source here)构建网址并设置一些标题信息,然后将此数据传递给[YOSRequestClient -sendAsyncRequestWithDelegate:]source here)。

请求客户端然后创建NSMutableURLRequestNSURLConnection并开始连接。

下载数据后(如果有)YOSResponseData接管并从下载的数据(source code here)创建新对象。

我看不到允许传入的serviceResponseData对象为nil的代码路径。您至少应该能够看到[data didSucceed],它会告诉您HTTP响应是否为< 400。奇怪的是,如果服务器只是打开并关闭没有HTTP响应的连接,我相信[data didSucceed] == YES即使它显然没有成功(因为0 <400)。

看起来你做错了什么。我的猜测是,自从the last commit was 4 years ago以来,该公司从那时起经历了重大的重组,该项目已被放弃,没有人打扰它。

更新:除了4年没有更新,雅虎的developer forum for this software has been closed。我不认为雅虎的这个软件的API正在运行。 -

答案 2 :(得分:0)

您在此处链接的Yahoo文档有几点需要检查:

  • 检查您是否正在请求并获得用户正确权限的批准

  • 检查YOSResponseData对象,如果发生错误,则应包含NSError个对象。

  • 它还包含NSHTTPURLResponse个对象。检查响应标头和状态代码。

您可能已经检查了这些内容,如果是这样,请将结果添加到问题中。

答案 3 :(得分:0)

您现在可以使用更新的Yahoo iOS SDK,而无需执行如此多的步骤:https://github.com/yahoo/yos-social-objc