我想从 Flash 向 Blogger 博客添加帖子。该文档说,您可以通过向带有帖子 JSON 正文的帖子集合 URI 发送 POST 请求来为博客添加帖子。
博主示例:
POST https://www.googleapis.com/blogger/v3/blogs/8070105920543249955/posts/
Authorization: /* OAuth 2.0 token here */
Content-Type: application/json
{
"kind": "blogger#post",
"blog": {
"id": "8070105920543249955"
},
"title": "A new post",
"content": "With <b>exciting</b> content..."
}
AS3如何做到这一点?