开发者

Getting targetFeedReadOnly error in simple YouTube search query

开发者 https://www.devze.com 2023-01-01 13:46 出处:网络
im beginner in the YT api , i trying to query YT api with search query from c++ http client with post request

im beginner in the YT api , i trying to query YT api with search query

from c++ http client with post request

the request string looks like this :

 http://gdata.youtube.com/feeds/api/videos?max-results=10&orderby=published&q=Skinny%20puppy&start-index=1&v=2

no headers and no autontication has bean made and the error im
getting :
 <errors xmlns='http://schemas.google.com/g/2005'>
<error>
<domain>GData</domain>
<code>targetFeedReadOnly</code>
<internalReason>Target feed is read-only</internalReason>
</error>
</errors>

开发者_运维百科why is that , im doing what it said in the documention.


Make sure that you make a "GET" request to this url. "POST" or "PUT" did not work...

0

精彩评论

暂无评论...
验证码 换一张
取 消