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);
:)