1


YT api の初心者です。ポスト リクエストを使用して C++ http クライアントから検索クエリを使用して YT api にクエリを実行しようとしています
。リクエスト文字列は次のようになります。

 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>

それはなぜですか、私はドキュメントに書かれていることをやっています。

4

1 に答える 1

3

この URL に対して「GET」リクエストを行っていることを確認してください。「POST」または「PUT」が機能しませんでした...

于 2013-08-10T11:59:53.707 に答える