显然 Pinterest iOS SDK 没有直接命令来执行此功能。如何使用通用 Pinterest API Endpoint DELETE 在 Objective-C 中实现这一目标?
我试图查看在线示例以实现对 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),但到目前为止我还没有找到明确的解决方案。有人实施过类似的事情吗?
实际上,Pinterest iOS SDK 确实有一个删除 pin 的便捷方法。目前它还没有包含在文档的 pin 部分中......(https://developers.pinterest.com/docs/sdks/ios/)。
刚刚通过在[PDKClient共享实例]之后随机输入找到了这个:
[[PDKClient sharedInstance] deletePin:(NSString *)
withSuccess:^(PDKResponseObject *responseObject) {
<#code#>
} andFailure:^(NSError *error) {
<#code#>
}];