使用 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]];
我编写了上面的代码片段,以便能够在 jaiku.com 上发布 Jaiku。我在其他语言中遇到过用于发布 Jaiku 的类似示例。但是我在控制台中得到以下响应:
{"status": "error", "message": "Invalid API user", "code": 0}
可能是什么错误,或者如果我错了,使用 xcode 发布 Jaiku 的正确方法是什么?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在尝试使用已弃用的旧版身份验证,听起来它可能不再完全起作用(当然未经测试):
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).