如何使用 iOS Pin It SDK 在 Pinterest 中实现 Followboard 按钮功能?

How to achieve Followboard button functionality in Pinterest using iOS Pin It SDK?

我在我的应用程序中使用 iOS Pin It SDK 来实现 Pinterest 社交数据所需的功能,例如获取图板和图钉详细信息以及 Pinit 按钮功能等,但我仍然无法实现 "Followboard" 功能。

如果有人可以提出任何合适的解决方案,那么这将有助于解决问题,因为我已经用我的技巧解决了这个问题。

目前 Pinterest API 中的此功能没有可用的解决方案,因为您可以在官方提供的应用程序中打开您的 Pinterest 页面(如果可用),否则在浏览器中打开它,以便用户可以关注该页面或使用以下代码通过此登机:

- (IBAction)openPinterestUser:(id)sender {

// Open the Pinterest App if available
if (![[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"pinterest://user/pagename"]]) {

    // Opening the app didn't work - let's open Safari
    if (![[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.pinterest.com/pagename/"]]) {

        // Nothing works - perhaps we're not online
        NSLog(@"Oops!");
    }
  }
}

- (IBAction)openPinterestBoard:(id)sender {

    // Open the Pinterest App if available
    if (![[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"pinterest://board/boardname"]]) {

        // Opening the app didn't work - let's open Safari
        if (![[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.pinterest.com/boardname"]]) {

            // Nothing works - perhaps we're not online
            NSLog(@"Oops!");
        }
    }
 }