flickr

iPhone:Upload photo to flickr

一个人想着一个人 提交于 2019-12-13 04:27:46
问题 I am developing a application where i want to load the photo on flickr. i don't want to use the toolkit. I want to use flickr API.I read the API documentation of flickr but there are no API to upload photo on particular account. All API related to Garden not to user account. i simply want to user will supply username and password , then I pass the username,password and photo content to API (or web service). Please suggest 回答1: Flickr's API documentation for uploading: http://www.flickr.com

How to upload a photo using the Flickr API?

十年热恋 提交于 2019-12-13 03:49:43
问题 I'm unable to upload an image to Flickr using the Flickr API. I'm trying to do this in a web-based application running PHP. I've tried DPZFlickr, which returns this, when trying to upload: Array ( [stat] => fail [err] => Array ( ) ) Inspecting the Flickr API's response, it's the same as what is returned when trying Dantsu's version of phpFlickr, which returns this: oauth_problem=signature_invalid&debug_sbs=... I've rolled my own CURL, which returns this: Upload result: HTTP/1.1 200 OK Date:

Jquery: Flickr + Masonry + ImagesLoaded. How merge all?

巧了我就是萌 提交于 2019-12-13 02:54:56
问题 I'm looking for loading images from a FlickrSet, into a bootrasp 3 container and resizing with Masonry. I see that container height is everytime equal to 0. I think that I need to use imagesLoaded but seems that imagesLoaded doesnt' work. Simply, container height is 0. This is code, someone could help me? var $gallery = $('#gallery'); if ($gallery.length!=0) { var url1 = 'http://api.flickr.com/services/feeds/photoset.gne?set='; var url3 = '&nsid='; var url5 = '&lang=en-us&format='; var url7 =

PHP not passing variable

偶尔善良 提交于 2019-12-13 01:15:55
问题 I've encountered a rather weird problem that has me completely stumped. I'm trying to pass a PHP variable from one file to another, then plug that variable into a search function within the Flickr API. To put in context, it's pulling a variable ($location) containing the location of a weather forecast. $location (located in scraper.php), which is defined by user input, goes into the search function. The function sends a request to the Flickr API, which returns an image url. as it goes:

Flickr JSON Parsing in Android

依然范特西╮ 提交于 2019-12-12 05:28:08
问题 I want to parse the JSON from this url (http://api.flickr.com/services/feeds/photos_public.gne?format=json) but the document actually returns a non valid JSON. See jsonFlickrFeed({ "title": "Uploads from everyone", "link": "http://www.flickr.com/photos/", "description": "", "modified": "2012-11-26T18:27:41Z", "generator": "http://www.flickr.com/", "items": [ { "title": "2012 Thanksgiving Holiday Weekend", "link": "http://www.flickr.com/photos/agape_boarding_school/8220697785/", "media": {"m":

Open Flickr From Third Party iOS App

喜你入骨 提交于 2019-12-12 00:41:39
问题 I want to forward my users to the Flickr app -if they have it of course- and if they don't to Flickr mobile. I want to make sure that they will see my page. I can do this with Facebook and Twitter by a link like twitter://... However, I don't know the link style of Flickr. Can someone help me. Thanks you! 回答1: What you're thinking of is called a URL-Scheme. I trying to look up the info, but I think that the developers at Flickr didn't think this through. An example post of my search is right

Displaying 5 latest thumbnails from public flickr api using atom_1 and php

余生长醉 提交于 2019-12-11 19:19:28
问题 Im trying to display the latest 5 images from: http://api.flickr.com/services/feeds/photos_public.gne with the tag "cars" and then output the latest 5 thumbnails into a blank html document as a type of gallery. This is as far as i have gotten: <?php require_once 'HTTP/Request2.php'; $request = new HTTP_Request2(); $request->setUrl('http://api.flickr.com/services/feeds/photos_public.gne'); $request->setMethod(HTTP_Request2::METHOD_GET); $url = $request->getUrl(); $url->setQueryVariable('tags',

jQuery - Flickr plugin with colorbox - gallery displays previous photos

元气小坏坏 提交于 2019-12-11 19:01:28
问题 I'm working on a plugin to display multiple flickr photo set photos retrieved from the api in a colorbox gallery. I've gotten really close (with the help of some nice SO users!) The idea is that the user can enter html like: <div id="72157634235266773" class="thumbs"></div> <div id="72157633471728555" class="thumbs"></div> and the plugin handles the rest. Check out this fiddle: http://jsfiddle.net/eBGVV/5/ My issue is that Photo Set 2 here starts at image 64 and you can use the the left arrow

Iteration over the dictionary and extracting values

耗尽温柔 提交于 2019-12-11 17:20:53
问题 I have a dictionary (result_dict) as follows. {'11333216@N05': {'person': {'can_buy_pro': 0, 'description': {'_content': ''}, 'has_stats': '1', 'iconfarm': 3, 'iconserver': '2214', 'id': '11333216@N05', 'ispro': 0, 'location': {'_content': ''}, 'mbox_sha1sum': {'_content': '8eb2e248cbad94e2b4a5aae75eb653c7e061a90c'}, 'mobileurl': {'_content': 'https://m.flickr.com/photostream.gne?id=11327876'}, 'nsid': '11333216@N05', 'path_alias': 'kishansamarasinghe', 'photos': {'count': {'_content': 442},

Let Users Submit To Our Flickr Feed (iPhone)

送分小仙女□ 提交于 2019-12-11 16:57:11
问题 We have developed an iPhone app that uses the camera. We want to let users take a photo and then upload that photo to OUR Flickr feed. All the tutorials I have found seem to having the photos upload to the user's photo feed... Ideally, users would submit their photos and we would have some sort of interface (not on the iPhone) where we could approve the photos that we want and trash the photos that we don't want. A given photo should not appear in the Flickr feed until it has been approved. I