我目前正在构建一个iOS应用程序,并希望在Flattr-API v2上包括Flattr-Support。

我已经在https://flattr.com/apps/中创建了我的应用程序,并获得了密钥和机密。

问题是,即使我选择“客户端”作为应用程序类型,我也必须在flattr的应用程序设置中提供一个回调URL。另外,在输入字段中似乎仅允许http:// ...回调URL,因此我无法设置回调URL来打开我的应用程序(类似于myApp:// ...)

如何为客户端应用程序实施Flattr oAuth流程?
是否有任何详细说明,如何使用非基于Web的/ iOS应用程序来实现Flattr身份验证?

我计划使用JDG OAuthConsumer库,但这似乎不起作用-我可以使用任何其他iOS库吗?

最佳答案

使用Flattr API v2来实现iOS应用程序中事物的实现的简短描述:

我目前正在使用“Mac版Google工具箱-OAuth 2控制器”:
http://code.google.com/p/gtm-oauth2/

创建要认证的 token :

- (GTMOAuth2Authentication *)flattrAuth {

NSURL *tokenURL = [NSURL URLWithString:@"https://flattr.com/oauth/token"];
// We'll make up an arbitrary redirectURI.  The controller will watch for
// the server to redirect the web view to this URI, but this URI will not be
// loaded, so it need not be for any actual web page.
NSString *redirectURI = @"http://localhost/"; //for me localhost with / didn't work

GTMOAuth2Authentication *auth;
auth = [GTMOAuth2Authentication authenticationWithServiceProvider:@"MyApplication"
                                                         tokenURL:tokenURL
                                                      redirectURI:redirectURI
                                                         clientID:clientKey
                                                     clientSecret:clientSecret];
return auth;
}

创建一个ViewController来验证 token :
- (GTMOAuth2ViewControllerTouch*)getSignInViewController{
GTMOAuth2Authentication *auth = [self flattrAuth];

// Specify the appropriate scope string, if any, according to the service's API documentation
auth.scope = @"flattr";

NSURL *authURL = [NSURL URLWithString:@"https://flattr.com/oauth/authorize"];

GTMOAuth2ViewControllerTouch *viewController;
viewController = [[[GTMOAuth2ViewControllerTouch alloc] initWithAuthentication:auth
                                                              authorizationURL:authURL
                                                              keychainItemName:keychainItemName
                                                                      delegate:self
                                                              finishedSelector:@selector(viewController:finishedWithAuth:error:)] autorelease];

return viewController;
}

和委托方法:
- (void)viewController:(GTMOAuth2ViewControllerTouch *)viewController
  finishedWithAuth:(GTMOAuth2Authentication *)auth
             error:(NSError *)error {
if (error != nil) {
    DLog(@"Flattr sign-in failed with error: %@", [error localizedDescription]);
} else {
    DLog(@"Flattr Signin success");
    authToken = [auth retain];
}
}

您可以在应用程序中显示Viewcontroller-它向用户显示flattr-login,以便他可以验证应用程序。

您可以通过以下方式使用身份验证 token 来进行验证:
NSString* flattrURL = @"https://api.flattr.com/rest/v2/things/%qi/flattr";
NSURL* u = [NSURL URLWithString:[NSString stringWithFormat:flattrURL, item.flattrThingID]];
NSMutableURLRequest* request = [NSMutableURLRequest requestWithURL:u];
[authToken authorizeRequest:request completionHandler:^(NSError *error){
    if (error == nil) {
        // the request has been authorized
        NSURLConnection* connection = [[[NSURLConnection alloc] initWithRequest:request delegate:self] autorelease];

        if(!connection){
            //TODO: handle error
        } else {
            [connection start];
        }
    } else {
        //TODO: handle error
    }
}];

现在实现NSURLConnectection委托方法并解析JSON响应。

GTMOAuth2库允许您将经过身份验证的 token 保存到钥匙串。请参阅http://code.google.com/p/gtm-oauth2/wiki/Introduction#Retrieving_Authorization_from_the_Keychain上的介绍以获取指示。

10-06 04:26