在 iPhone 中集成 Gigya 时限制提供商?

发布于 2024-10-03 18:26:39 字数 316 浏览 2 评论 0原文

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

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

I am integrating Gigya in my iphone app. Now it provides 17 providers for access, I want to limit it to just 9 providers. How can I do that?

Has any one integrated it for iPhone? It loads a web view which displays 17 providers in a grouped table format, see here.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

や三分注定 2024-10-10 18:26:39

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

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

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

[gsAPI showAddConnectionsUI:pParams5 delegate:self context:nil];

To set Facebook and Twitter you can use following code.

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

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

[gsAPI showAddConnectionsUI:pParams5 delegate:self context:nil];
楠木可依 2024-10-10 18:26:39
 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

 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 {} 

Check whether you have valid API

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文