2016-09-24 8 views

答えて

0

次のようにBloggerのAPI経由で新しいポストを挿入するための基本的なJSON形式がある -

{ 
    "kind": "blogger#post", 
    "content": "Blog Content, can contain HTML", 
    "blog": { 
    "id": "BLOGID" 
    }, 
    "title": "Blog Title", 
    "labels": [ 
    "Label" 
    ], 
    "titleLink": "https://google.com", 
    "status": "LIVE" 
    "readerComments": "ALLOW", 
    "location": { 
    "lat": 0, 
    "lng": 0, 
    "name": "Place" 
    } 
} 

あなたはhttps://developers.google.com/blogger/docs/3.0/reference/posts/insert

でこのエンドポイントのAPIエクスプローラを使用して試すことができます