Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
phpflickr を使用して、flickr アカウントの写真のコメントを取得する方法を知りました。しかし、同じように写真にコメントを追加することはできません。私は試した:
$phpflickr->photos_comments_addComment($photo_id,"TestCK");
しかし、写真に私のコメントが表示されません。
助けてください。
とった...!flickr でアプリを承認し、ページを getToken.php にリダイレクトしてトークンを取得し、トークンを $token に保存する必要がありました。次に、次の行を追加するだけで済みました。
$f = new phpFlickr($apiKey, $apiSecret, true); $f->setToken($token); $f->auth(); $f->photos_comments_addComment($photoid,$comment);
:)