個別記事データを取得します。

リクエスト

メソッド

GET

URL

https:////entry//rest_api=1.0/

ヘッダー

パラメータ名
Content-Type application/json

すべてのリソースで共通のリクエストヘッダーは、こちらをご参照ください。

コンテント

リクエスト例

curl -v -X GET
       -H "CONTENT-TYPE: application/json" 
       -H "X-ECHO-APP-ID: fd15eacfaf2388fac2980fef163c6116" 
       -H "X-ECHO-APP-KEY: 0cdf8bc765d7d9604e83becf93137d42" 
       "https://hogehoge.echopf.com/blogs/entry/20140101000000/rest_api=1.0/"

レスポンス

HTTPステータス

ステータスコード内容
200 取得成功

ヘッダー

パラメータ名
Content-Type application/json

コンテント

個別記事データが出力されます。

フィールド名説明







refid 文字列 記事ID
url 文字列 URL
url_path 文字列 URLパス
title 文字列 タイトル
description 文字列 概要
keywords 文字列 キーワード
robots 文字列 検索エンジンロボット制御
contents コンテンツオブジェクト 記事コンテンツ
link_status 数値 リンク設定
owner 文字列 所有ユーザー名
modified 日時 最終更新日時
modified_user 文字列 最終更新ユーザー名
created 日時 作成日時
published 日時 記事日時
categories 配列 所属カテゴリ(各要素はカテゴリオブジェクト
acl ACLオブジェクト アクセスコントロール (ACL)

レスポンス例

{
  "refid":"20140101000000",
  "url":"http:\/\/hogehoge.echopf.com\/\/blogs\/entry\/20140101000000",
  "url_path":"\/\/blogs\/entry\/20140101000000",
  "title":"2014\u5e7401\u670801\u306e\u8a18\u4e8b",
  "description":"",
  "keywords":"",
  "robots":"",
  "contents":{
    "main":"

\u8a18\u4e8b\u306e\u672c\u6587\u3067\u3059\u3002<\/p>"
  },
  "link_status":1,
  "owner":"\u30e6\u30fc\u30b6\u30fc",
  "modified":"2014-01-01 00:00:00",
  "modified_user":"\u30e6\u30fc\u30b6\u30fc",
  "created":"2014-01-01 00:00:00",
  "published":"2014-01-01 00:00:00",
  "categories":[
    
  ],
  "acl":{
    "*":{
      "get":true,
      "list":true,
      "edit":true,
      "delete":true
    }
  }
}