1
私はテキストアップロードサイトhttp://textuploader.com/で作業する予定ですが、これはわかりません。私はおそらく十分に見苦しくはありませんでしたが、それはポイントではありません。私が実際に探しているのは、単にこれらのコマンドを実行する方法、または単に "HTTPClient"を使用してこれらの種類の操作を行う方法です。すべてのコマンドと情報を持つサイトはhereです。また、単に便宜のために、私はこの記事では、私にとって最も重要なものを残す必要があります。ここでHTTPClientコードのCURLコマンド
POST: /posts
This will allow you to post to your account.
{
"Title": "Sample Title",
"Content": "Post body goes here.",
"Type": "public"
}
Example:
curl -X POST "http://api.textuploader.com/v1/posts" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "X-TextUploader-API-Key: your-api-key-here" \
-v \
-d '{"title": "Sample Title", "content": "Post body goes here.", "type": "public"}'
And this:
GET: /posts/[shortcode]
This method will return the complete body of the requested shortcode.
ここで私の答えをチェックしてください。http://stackoverflow.com/questions/36475076/how-to-make-post-curl-request-in-java –
ああ、ありがとう、完璧! – Dankrushen