使用 xcode 发布 jaiku

发布于 2024-08-18 23:11:29 字数 867 浏览 6 评论 0 原文

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 的正确方法是什么?

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]];

I wrote the above code snippet to be able to post a jaiku on jaiku.com. I've come across similar samples in other languages for posting a jaiku. However i get the following response in the console:

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

what could be the error or if im wrong, what is the correct approach to posting a jaiku using xcode?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

呢古 2024-08-25 23:11:29

您正在尝试使用已弃用的旧版身份验证,听起来它可能不再完全起作用(当然未经测试):

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

您应该尝试使用他们在上述链接中记录的新 OAuth 身份验证。肯定更复杂(而且更安全)。

You are trying to use the legacy authentication which is deprecated and sounds like it might not be fully functional any longer (certainly untested):

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

You should try using the new OAuth authentication they document at the above link. definitely more complicated (and secure).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文