0

我正在将 Gigya 集成到我的 iphone 应用程序中。现在它提供了 17 个提供程序供访问,我想将其限制为只有 9 个提供程序。我怎样才能做到这一点?

有没有人为iPhone集成它?它加载了一个 Web 视图,该视图以分组表格格式显示 17 个提供者,请参见此处

4

2 回答 2

2

要设置 Facebook 和 Twitter,您可以使用以下代码。

GSDictionary *pParams5 = [[GSDictionary new] autorelease];

[pParams5 putStringValue:@"facebook,twitter" forKey:@"enabledProviders"]; 

[gsAPI showAddConnectionsUI:pParams5 delegate:self context:nil];
于 2010-11-25T12:50:41.303 回答
0
 GSAPI *gsAPI // declare this  

 gsAPI = [[GSAPI alloc] initWithAPIKey:<API-KEY> viewController:self];  // i kept this in viewDidload

// add this code to have facebook and twitter on provider list

   GSDictionary *pParams5 = [[GSDictionary new] autorelease];
   [pParams5 putStringValue:@"facebook,twitter" forKey:@"enabledProviders"];  
   [gsAPI showAddConnectionsUI:pParams5 delegate:self context:nil];


//this method called when login fails
  -(void)gsLoginUIDidFail:(int)errorCode errorMessage:(NSString*)errorMessage context:(id)context{ }

// this method called on successful login
  - (void)  gsLoginUIDidLogin:(NSString*)provider user:(GSDictionary*)user context:(id)context {} 

检查您是否有有效的 API

于 2010-11-30T12:16:51.377 回答