記事一覧はこちら

TwitterのAPIの戻り値 htmlエスケープはどうなっているのか記録。

twitterREST APIとStreaming APIの違い。 postしたツイートは

!"#$%&'()*+,-./:;<=>?@[]^_`{|}~
ABC

(ABCの後に数回改行もある) windows7のツイタマより。半角記号全部に注目。化けてたらごめん。 gist.githubに上げたから、RAWで見れば多分大丈夫。

streamingAPI

{"created_at":"Sat Aug 23 03:18:38 +0000 2014","id":503018450327846913,"id_str":"503018450327846913","text":"!"#$%&'()*+,-./:;<=>?@[\]^_`u007b|u007d~nABC","source":"u003ca href="http://twitter.softama.com/" rel="nofollow"u003eu30c4u30a4u30bfu30deu003c/au003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212836820,"id_str":"212836820","name":"FushiharaCheck","screen_name":"FushiharaCheck","location":"u3053u3053","url":null,"description":null,"protected":true,"followers_count":2,"friends_count":2,"listed_count":0,"created_at":"Sun Nov 07 05:38:39 +0000 2010","favourites_count":2,"utc_offset":-25200,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":398899,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://pbs.twimg.com/profile_background_images/758337975/1f7985d6c0868d20c08bbdc174c86454.png","profile_background_image_url_https":"https://pbs.twimg.com/profile_background_images/758337975/1f7985d6c0868d20c08bbdc174c86454.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/2340621555/9cbjty52g7ihcv5s88yh_normal.png","profile_image_url_https":"https://pbs.twimg.com/profile_images/2340621555/9cbjty52g7ihcv5s88yh_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"filter_level":"medium","lang":"und"}

rest api

{"created_at":"Sat Aug 23 03:18:38 +0000 2014","id":503018450327846913,"id_str":"503018450327846913","text":"!"#$%&'()*+,-./:;<=>?@[\]^_`u007b|u007d~nABC","source":"u003ca href="http://twitter.softama.com/" rel="nofollow"u003eu30c4u30a4u30bfu30deu003c/au003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212836820,"id_str":"212836820","name":"FushiharaCheck","screen_name":"FushiharaCheck","location":"u3053u3053","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":true,"followers_count":2,"friends_count":2,"listed_count":0,"created_at":"Sun Nov 07 05:38:39 +0000 2010","favourites_count":2,"utc_offset":-25200,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"verified":false,"statuses_count":398899,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http://pbs.twimg.com/profile_background_images/758337975/1f7985d6c0868d20c08bbdc174c86454.png","profile_background_image_url_https":"https://pbs.twimg.com/profile_background_images/758337975/1f7985d6c0868d20c08bbdc174c86454.png","profile_background_tile":false,"profile_image_url":"http://pbs.twimg.com/profile_images/2340621555/9cbjty52g7ihcv5s88yh_normal.png","profile_image_url_https":"https://pbs.twimg.com/profile_images/2340621555/9cbjty52g7ihcv5s88yh_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":true,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"symbols":[],"urls":[],"user_mentions":[]},"favorited":false,"retweeted":false,"lang":"und"}

textに関しては、Streaming APIREST APIエンコード形式は変わらないな。変換されたテキスト一覧。html的にアレなのでgist参照推奨

& → &amp;
< → &lt;
> → &gt;
 → \
" → "
/ → /
{ → u007b
} → u007d

エスケープはjsonの段階で消えるとして、結局&<>のエスケープだけする感じか。