0

HTTPUnauthorized 401 Authorization Required

Getting a ton of 401 errors when making yql requests.
I'm using the same urls that the console gives me but apparently I'm not authorized:
/v1/yql?q=select%20*%20from%20flickr.photos.search%20where%20text%3D%22Cat%22%20limit%2010&format=xml

I am authorized to do:
show tables
and
desc <some table>

Am I missing some essential oauth magic or are there some other permissions that I need to setup. (using 2legged oauth)

by
1 Reply
  • use rawurlencode for php or something like this for ruby:

    def raw_url_encode(url)
    CGI.escape(url).gsub("+", "%20")
    end
    0

Recent Posts

in YQL