在 Objective C 中通过 Pinterest API 删除 Pinterest 图钉

Deleting a Pinterest pin via Pinterest API in Objective C

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

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

实际上 Pinterest iOS SDK 确实有一个删除图钉的便捷方法。目前它还没有包含在文档的 pin 部分中……(https://developers.pinterest.com/docs/sdks/ios/)。

刚刚通过在 [PDKClient sharedInstance] 之后随机输入发现了这个:

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