0

我正在使用此处提供的用于 Objective C 的 Google 客户端库。我已经成功地授权用户并获取刷新令牌。(使用嵌入的 GTMOAuthenticaion api)。

在成功授权后调用的选择器中,我按如下方式发出获取用户配置文件请求..(我需要当前登录/经过身份验证的用户的 id)

-(void)viewController:(GTMOAuth2ViewControllerTouch *)viewController
      finishedWithAuth:(GTMOAuth2Authentication *)auth
                 error:(NSError *)error {

    if (error != nil) {
        NSLog(@"Stop");
    } else {

        if ([auth canAuthorize]){
            [Mediator plusService].authorizer = auth;


            // Problematic Line
            GTLQueryPlus *profileQuery = [GTLQueryPlus queryForPeopleGetWithUserId:@"me"]; // Notice the UserId Param


            profileQuery.completionBlock = ^(GTLServiceTicket *ticket, id object, NSError *error) {
                if (error == nil) {
                    self.mediator.gProfile = object;
                } else {
                    NSLog(@"GPlus Service Error %@", error);
                }
            };

            [[Mediator plusService] executeQuery:profileQuery completionHandler:
            ^(GTLServiceTicket *ticket, id result, NSError *error) {
                if (error)
                    NSLog(@"Some Service Error %@", error);
            }];
        }
    }
}

如果我将“me”作为参数,我会在 jSON 响应中得到无效的用户 ID 错误字符串。

但是,如果我提供一些 userId,例如我自己的 113632923069489732066,它可以正常工作并返回适当的 JSON 响应..!!

示例文件夹中的 Google Plus 示例也无法获取以以下错误结尾的当前用户配置文件。

Error Domain=com.google.GTLJSONRPCErrorDomain Code=400 "The operation couldn’t be completed. (Invalid user ID: {0})" UserInfo=0x7a670fa0 {NSLocalizedFailureReason=(Invalid user ID: {0}), GTLStructuredError=GTLErrorObject 0x7a67b130: {message:"Invalid user ID: {0}" code:400 data:[2]}, error=Invalid user ID: {0}}

PS 我的 API 控制台应用程序不适用于已安装应用程序下的 iOS 选项,但需要使用“其他”选项进行配置。使用 iOS 选项配置时,oAuth 失败并显示 invalid_client 错误响应。

4

1 回答 1

0

我的错 .. !!还有一个非常愚蠢的.. !!

我使用尚未与 GPlus 关联的 Gmail 帐户登录 .. !! =/

于 2012-07-02T11:32:53.830 回答