記事の投稿と更新サンプル Application Password でのサンプル Application Password は普通の BASIC 認証と同じなので、curlコマンドにユーザ名(注1)とアプリケーションパスワードを引数として渡すことで簡単に API を叩くことができます。 #!/bin/bash read -r -d '' json << _EOM_ { "title": "Post new draft with cat 2", "content": "TEST<br/>TEST", "categories": [2], "status": "draft" } _EOM_ curl -X POST \ -u "user:applicatopn_password" \ -H "Content-Type: application/json" \ -d "$json" \ http