0

我使用设计在 Rails 上进行身份验证。目前我正在测试 API 的一些 POST 函数,我想用 cRUL 来做,所以我需要访问令牌才能获得设计的批准。然后我可以像使用 cURL

curl -v -H "Accept: application/json" -H "Content-type: application/json" -H 
'Authorization: Token token=""' -X POST -d '{"name": "paul 
allen","first_name":"paul","last_name":"allen","middle_name":"","gender":"m",
"dob":"1/2/1980","dod":""}' http://localhost:3000/?auth_token=OyZSe8ozy_os5acibqNC 

但我怎样才能得到 auth_token?(OyZSe8ozy_os5acibqNC)?

4

1 回答 1

0

设计令牌可以在控制器中返回:

  render :status=>200, :json=>{:token=>@user.authentication_token} 
于 2012-11-07T03:27:47.803 回答