flickr Questions
6
Solved
I'm trying to get a thumbnail of flickr pictures in PHP.
All I saw was this in their API:
http://www.flickr.com/services/api/misc.urls.html
Which is a overkill. In instagr.am/twitpic and others I...
Meander asked 21/7, 2011 at 10:48
6
Solved
I'm using the Flickr API. When calling the flickr.test.login method, the default JSON result is:
{
"user": {
"id": "21207597@N07",
"username": {
"_content": "jamalfanaian"
}
},
"stat": "ok"...
10
Solved
In the Flickr API docs, you need to find the MD5 sum of a string to generate the [api_sig] value.
How does one go about generating an MD5 sum from a string?
Flickr's example:
string: 000005fab4...
8
Solved
I am trying to create a very basic Flickr gallery using the Flickr API. What I want to achieve is sorting my pictures by tag. What I am using is jQuery.getJSON() so that I can parse the API respons...
Gradation asked 22/9, 2011 at 21:35
5
I want to use Flickr API for downloading the images on Android Phone, can any one give or tell, me about the working sample of Flickr API on Andorid.
I have add the flickr.jar as the external libr...
4
Solved
I used flickr photo search method to retrieve public photos.
when I run it with jquery, it works fine, I get the json object in correct form.
{
"photos": {
"photo": [
{
.........
}
]
},
"s...
Burget asked 10/7, 2014 at 8:26
4
Solved
I’ve a Flickr which I’m using to upload pictures from my phone and all images are public. On my blog I want to retrieve all the images to show and for that I’ve first tried to create an application...
Edge asked 18/5, 2012 at 17:35
2
Solved
I want to list photos from flickr account using flickr.photos API using PHP with OAuth.
Right now to get the URLs of the images I am doing it in 2 steps which makes too many requests to the API an...
Hospers asked 24/1, 2014 at 8:46
6
Solved
Is it possible to get static image URL from the flickr URL via an api call or some script ?
For eg :
Flickr URL -> http://www.flickr.com/photos/53067560@N00/2658147888/in/set-72157606175084388/
S...
Courtship asked 26/11, 2009 at 12:5
2
Solved
I have a class that uploads a file to Flickr. The file is of type
'InMemoryUploadedFile'.
I would like to know how to convert or pass the data in the 'InMemoryUploadedFile' file, to a format for f...
2
Solved
Is it possible through flickr api or some other service obtain CC-images taken at the location the user is situated?
Like getting the lat and long from the browser and sending it to flickr and the...
Gerda asked 25/9, 2013 at 13:46
2
I have this code and I'm trying to return Flickr API, however I get the following error.
Cross-Origin Request Blocked: The Same Origin Policy disallows reading
the remote resource at
http://ap...
Anabas asked 29/10, 2015 at 20:21
4
Solved
Trying to adapt the $.getJSON Flickr example:
$.getJSON("http://api.flickr.com/services/feeds/photos_public.gne?tags=cat&tagmode=any&format=json&jsoncallback=?",
function(data){
$.ea...
1
Solved
Can't alert $getJSON .fail:
this.flickrPics = ko.observableArray();
ko.computed(function() {
$.getJSON(
'https://api.flickr.com/services/feeds/photos_public.gne?jsoncallback=?',
{
tags : data...
3
Solved
I wanted to download a picture from the Flickr using the flicker API.
I am using OAuth for authentication.
When I searched on the site, I got an API called flickr.photos.getInfo. But it only gives...
1
Solved
Looking for a way to mimic Flickr API logic to use Google views.
On Flickr I can call the flickr.photos.search method and get all the photos for a specific location like so:
https://api.flickr.co...
Everard asked 19/5, 2015 at 18:5
1
Solved
I want to get photos from albums which I have on flickr . I have 4 albums . Curently I am doing flickr.people.getPublicPhotos method which returns all photos . Here is my url
https://api.flickr.co...
Comprador asked 11/12, 2014 at 22:48
3
Solved
I'm using angularjs and I can't get the following controller to save to a $scope variable the data returned from an AJAX request to Flickr. The $http.get makes a call to a locally saved json file. ...
Nutriment asked 19/11, 2014 at 3:37
5
Solved
Im trying to decode a json string returned from flickr within my PHP code. Im using CURL but it keeps returning a string even when I wrap json_decode() around the json sring variable. Any ideas?
$...
5
Solved
I'm basically trying to load in one random flickr image taken from a specific user and specific set which then gets displayed within a div with the id of 'flickr-wrap'. I'm trying to manipulate thi...
2
Solved
We would like to simulate Imagemagick functionality, but only in Javascript. Do any libraries exist?
Specifically, the goal is to display thumbnails of images without distorting the thumbnail to t...
Depressant asked 17/3, 2011 at 19:2
1
Solved
I have issue when try to show the data I get.
Here is my code:
$http({
method:'get',
format:'json',
url:'http://api.flickr.com/services/rest/?method=flickr.photos.getRecent&api_key=MyAPI&am...
4
Solved
I am taking the iTunes U Stanford iOS Class and am working on one of the assignments to build a little Flickr app. I am getting an error that I cannot seem to be able to debug which comes up as
...
Amagasaki asked 3/8, 2012 at 15:11
1
I need some help with clojure and oauth.
I got stuck at the last step: signing the request with the credentials.
(def credentials (oauth/credentials consumer
(:oauth_token access-token-response)...
1
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 ...
1 Next >
© 2022 - 2024 — McMap. All rights reserved.