phpflickr

php library for flickr API

倖福魔咒の 提交于 2019-12-23 03:12:55
问题 I am banging my head trying to use Flickr API... My goal is to be able to upload images and create albums in my Flickr account from my website... I tried the phpFlickr library but apparently it needs updates for getting authenticated tokens...It keeps giving me "Invalid auth token". I did some reading on how to get tokens and using DPZFlickr managed to get oauth_token & oauth_verifier but failed to exchange that with an access token...It also failed in uploading any photo to my account using

Infinite Scrolling Paging

◇◆丶佛笑我妖孽 提交于 2019-12-14 03:43:11
问题 Can anyone tell how to implement Infinite Scrolling Paging for $flickr->call('flickr.photos.search'); I've the user logged in and the first 10 set of photos. Now how to implement scrolling paging for remaining photos. I am using * Flickr API Kit with support for OAuth 1.0a for PHP >= 5.3.0. And Codeigniter Any Help would be appreciated.... 回答1: Give unique id value for the div that contains the story in your design and use Jquery to Post the value to your controller using Ajax Post then

Infinite Scrolling Paging

自作多情 提交于 2019-12-04 21:39:35
Can anyone tell how to implement Infinite Scrolling Paging for $flickr->call('flickr.photos.search'); I've the user logged in and the first 10 set of photos. Now how to implement scrolling paging for remaining photos. I am using * Flickr API Kit with support for OAuth 1.0a for PHP >= 5.3.0. And Codeigniter Any Help would be appreciated.... Give unique id value for the div that contains the story in your design and use Jquery to Post the value to your controller using Ajax Post then retrieve next set of Flickr data. Once you've the results append it below the last div. Your View Page looks like