在Objective C中通过Pinterest API删除Pinterest引脚

时间:2018-05-12 17:34:05

标签: ios objective-c rest api pinterest

显然,Pinterest iOS SDK没有执行此功能的直接命令。如何在Objective C中使用通用Pinterest API端点DELETE来实现这一目标?

我试图在线查看示例以实现对Restful Pinterest API的DELETE调用(例如http://www.stlplace.com/2014/09/03/calling-restful-post-put-and-delete-methods-in-afnetworking-2-0/https://www.raywenderlich.com/59255/afnetworking-2-0-tutorial),但到目前为止我还没有找到明确的解决方案。有没有人实现过类似的东西?

1 个答案:

答案 0 :(得分:0)

实际上,Pinterest iOS SDK确实有一种删除别针的便捷方法。此时文档的引脚部分中没有包含它......(https://developers.pinterest.com/docs/sdks/ios/)。

在[PDKClient sharedInstance]之后随机输入:

 [[PDKClient sharedInstance] deletePin:(NSString *) 
      withSuccess:^(PDKResponseObject *responseObject) {
           <#code#>
      } andFailure:^(NSError *error) {
           <#code#>
      }];