1
lijinma 2014-07-29 10:01:21 +08:00
去掉 type="application/x-www-form-urlencoded" 试试?
|
2
lijinma 2014-07-29 10:02:39 +08:00
错了,去掉 application/x-www-form-urlencoded 也没用,因为默认就是 application/x-www-form-urlencoded。。。
|
3
eggacher OP @lijinma 试过了,不是这个问题。
<form action="http://8tzpnrQXugOwaNN7j:[email protected]:8000/o/token/" method="post" type="application/x-www-form-urlencoded"> <input name="grant_type" type="hidden" value="password" /> <input name="client_id" type="hidden" value="8tzpnrQXugOwaNN7j" /> <input name="client_secret" type="hidden" value="d69CfLZ4" /> <input name="username" type="text" value="george" /> <input name="password" type="password" value="123456" /> <input type="submit" value="submit" /> </form> 改成这样就行了...Orz.. 我就很奇怪,curl协议里也实现了 OAuth么? |
4
582033 2014-07-29 10:13:19 +08:00
curl -v -X POST --data 'rant_tyle=xxx&username=xxx&password=xxx' http://xx.com
更多请参照: http://yjiang.tk/?p=41 |
5
ibudao 2014-07-29 10:15:20 +08:00
httpie, httpie-oauth
|
6
bigfei 2014-07-29 11:02:15 +08:00
|
7
pmispig 2014-07-29 11:20:05 +08:00
如果按你后面的表单构建提交成功,那curl 的那个命令提交应该会出错啊
|