1

我尝试使用带有 curl的篝火室 API加入篝火室。

我尝试:

curl -v -H "Content-Type: application/json" -i --user my_token:my_password https://camp111.campfirenow.com/room/test_room/join.json

我得到了回应:

<html><body>You are being <a href="https://camp111.campfirenow.com/login">redirected</a>.</body></html>

我如何正确加入 curl 的篝火室?

谢谢你。

4

1 回答 1

1

您应该将 test_room 替换为您的数字roomId,并且您必须至少指定空-d参数以在标头中设置 POST 方法,并且您可以省略 加入请求的参数-i和参数。-H

请记住,您只能加入房间受邀帐户。

于 2013-01-17T18:51:21.640 回答