gpt4 book ai didi

iphone - 使用 xcode 发布 jaiku

转载 作者:行者123 更新时间:2023-12-03 19:23:25 27 4
gpt4 key购买 nike

NSMutableURLRequest *jaikuRequest=[NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"http://api.jaiku.com/json"]
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:60.0];



[jaikuRequest setHTTPMethod:@"POST"];
NSString *jbody= [NSString stringWithFormat:@"method=presence.send&user=XXusernameXX&personal_key=XXpersonalkeyXX&message=%@",
encodedMsg];

[jaikuRequest setHTTPBody:[[NSString stringWithFormat:jbody] dataUsingEncoding:NSASCIIStringEncoding]];

我编写了上面的代码片段,以便能够在 jaiku.com 上发布 Jaiku。我在其他语言中遇到过用于发布 Jaiku 的类似示例。但是我在控制台中得到以下响应:

{"status": "error", "message": "Invalid API user", "code": 0}

可能是什么错误,或者如果我错了,使用 xcode 发布 Jaiku 的正确方法是什么?

最佳答案

您正在尝试使用已弃用的旧身份验证,并且听起来它可能不再具有完整的功能(当然未经测试):

http://www.jaiku.com/api/docs/authentication

您应该尝试使用上面链接中记录的新 OAuth 身份验证。肯定更复杂(也更安全)。

关于iphone - 使用 xcode 发布 jaiku,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2115533/

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