iOS Swift:我们如何在Pinterest中创建图钉?

时间:2018-07-27 14:03:47

标签: ios swift sharing pinterest

我拥有所有已登录用户的板,并且使用Pinterest api能够从给定板中获取引脚,但创建引脚不起作用。

我已经在Pinterest Developer https://developers.pinterest.com/上创建了应用程序

根据文档,我为身份验证的用户添加了协作者。在权限api之后发送用于创建图钉的完美参数。

我在权限api和开发板上得到了完美的响应,但是在我的应用程序中创建pin时出错。

请看下面我的代码:

PDKClient.sharedInstance().createPin(withImageURL: URL.init(string: aImageUrl), link: URL.init(string: "https://www.pinterest.com"), onBoard: myBoardID, description: "Hello All", withSuccess: { (response) in
      //print(response)
        print("Pinterest sucess")
    }, andFailure: { (error) in
       print(error as Any)
         print("Pinterest Fail")
     })

对于此api 我总是会收到404或400错误。

请帮助我。

谢谢。

0 个答案:

没有答案