如何调用REST API?
我无法理解如何调用 RESTful 服务
更具体地说,我试图从 hxxp://teambox.com/api/user
/api/1/users/:id
我不知道如何实际创建 URL,我应该如何使用 ':id' ?
我尝试过:
http://teambox.com/api/1/users/?123456
http://teambox.com/api/1/users/?id=123456
但它不起作用。 我使用的是从另一个调用收到的整数 id,而不是 12345,所以这不是因为实际的 id。
我只是不知道如何创建带有 ':id' 的 URL
谢谢!
I am having trouble understanding how to call a RESTful service
More specifically, I am trying to call the first API from
hxxp://teambox.com/api/user
/api/1/users/:id
I don't know how to actually create the URL, how should I use ':id' ?
I tried:
http://teambox.com/api/1/users/?123456
http://teambox.com/api/1/users/?id=123456
but it doesn't work.
Instead of 12345 I am using the integer id I receive from another call, so it's not because of the actual id.
I just don't know how to create the URL with ':id'
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://teambox.com/api/1/users/123456
怎么样?How about
http://teambox.com/api/1/users/123456
?