utf 8 - Instagram API getting error on UTF-8 characters (tested on /tags/{TAGNAME}/media/recent) -


shamelessly stolen ( https://groups.google.com/forum/#!topic/instagram-api-developers/trfu444zyhu ) thread have exact same issue , hoping better responses here.

long story short, few hours ago working, isn't.

the test platform can found @ both website , https://apigee.com/console/instagram

sending https://api.instagram.com/v1/tags/türkiye/media/recent (careful "ü")

result:   {   "meta":  {     "error_type": "oauthparameterexception",     "code": 400,     "error_message": ""client_id" or "access_token" url parameter missing. oauth request requires either "client_id" or "access_token" url parameter."   } } 

sending https://api.instagram.com/v1/tags/turkiye/media/recent (now "u")

result:   {    "pagination":  {},   "meta":  {},   "data":  [      {},      {},      {},      {},.. .. .. ... , on 

sending https://api.instagram.com/v1/tags/türkiye/media/recent?client_id=7176aa6ef2fd47fd9cb373a5354bd30f ("ü" again , time manually attached client_id)

result:    {    "meta":  {     "code": 200   },   "data":  {     "media_count": 1471127,     "name": "t"   } } 

this time i'm getting name "t". seems query broken before "ü" letter utf-8 (turkish if needed).

this bug on instagram-side. there's open discussion on instagram developers google group. although, i've seen in application, bug resolve.


Comments