gpt4 book ai didi

ios - 使用 Pinterest SDK 分享 Pin 图

转载 作者:行者123 更新时间:2023-11-28 07:03:59 24 4
gpt4 key购买 nike

我正在尝试从我的应用程序向 Pinterest 发布 pin。

我关注了文档:iOS Pin It SDK .

非常简单,但每次我尝试固定图像时应用程序都会引发异常,或者 Pinterest 应用程序正常打开但当我固定图像时出现此错误:

error in client id

获取正确的 client id 似乎有问题。

我搜索了这个问题并找到了这个结果: message sent to deallocated instance using Pinterest SDK,但它对我不起作用!

我的代码:

var pin = Pinterest(clientId: "1446186", urlSchemeSuffix: "prod")
var urll = NSURL(string: "http://placekitten.com.s3.amazonaws.com/homepage- samples/200/287.jpg")!
var sourceURL = NSURL(string: "http://placekitten.com")!
pin.createPinWithImageURL(urll, sourceURL: sourceURL, description: "Pinning from Pin It Demo")

最佳答案

试试下面的代码....我正在我的项目中使用...

_pinterest = [[Pinterest alloc] initWithClientId:@"XXXXX" ];
NSString *imageKey =[NSString stringWithFormat:@"%@",Url];
NSString *captionKey = TempCaption;

NSLog(@"pinterest :%@ -- %@",imageKey,captionKey);
NSURL *imageUrl = [NSURL URLWithString:[NSString stringWithFormat:@"%@",imageKey]];
NSURL *sourceUrl = [NSURL URLWithString:kServiceStoreLink];
NSString *descrStr = [NSString stringWithFormat:@"%@",captionKey];
[_pinterest createPinWithImageURL:imageUrl
sourceURL:sourceUrl
description:descrStr];

关于ios - 使用 Pinterest SDK 分享 Pin 图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31290946/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com