2017-02-13 8 views
-1

アンドロイドで投稿リクエスト(バレーを使用)を送信しますが、データはjsonにはありません。 例ボレーのアンドロイドにデータ(jsonなし)を送信する

POST /info HTTP/1.1 
Host: test.com 
Cookie: test_web=1234; 
Connection: keep-alive 
Content-Length: 10 

id=123 

あなたは私を助けることができますか? ありがとうございます。

+0

の更なる情報は、何のお手伝いをしますか? – RSon1234

+0

あなたのコードを表示できますか? –

答えて

-1

使用IONライブラリ

dependencies { 
    compile 'com.koushikdutta.ion:ion:2.+' 
} 

用法:

Ion.with(getContext()) 
.load("https://koush.clockworkmod.com/test/echo") 
.setBodyParameter("goop", "noop") 
.setBodyParameter("foo", "bar") 
.asString() 
.setCallback(...) 

https://github.com/koush/ion

関連する問題