0

我正在开发一个从 Flickr 提取图像的应用程序,它还提供上传到 Flickr 的功能。问题是 Flickr API 似乎不接受未经身份验证的照片上传。

换句话说,使用我的应用程序的最终用户必须通过 Flickr 网站并使用他们的 Flickr 帐户登录并授予权限,然后,Flickr 才会开始上传过程。

在进行了一些搜索之后,我看到了诸如拥有用于身份验证和上传的永久令牌之类的事情,因为用户一直......

如果有人可以提供任何解决方案或解决方法,请提供帮助。

谢谢

4

1 回答 1

0

I recently wrote a blog post regarding triple tags and pulling flickr photos into a single wordpress post: http://zedzdead.net/blog/2013/04/10/flickr-machine-tags/

The wordpress stuff is irrelevant, but tagging photos with triple or "machine" tags is ideal for associating photos across multiple accounts and extracting them using the api.

You might need to inform your app users about the tag they need to use e.g. myapp:article=123, but you can then use the search method in the flickr api and use the machine_tags argument to pull all photos on flickr with this tag.

This isn't my idea, Jeremy Kieth did it first: http://adactio.com/journal/1274/

The beauty of this approach is that no flickr authentication is required.

于 2013-05-07T13:22:14.947 回答