Hi guys,
I'm new to the flickr API, and I assumed fetching photos from a given photoset was simply a case of making a rest request with an api key and user listed, like so:
$ curl http://api.flickr.com/services/rest/?method=flickr.photosets.getList&api_key=249f544ccfec879bc602f23c7441047c&user_id=36940190@N04&format=js...
There are a handful of iPhone apps out there doing some behind-the-scenes trickery with undocumented APIs, with effective results.
1) How would I go about getting a listing of undocumented iPhone APIs?
2) Are there third-party off-the-cuff documentation for some of these APIs?
...
Hello, I am trying to make a line chart by using the Google Visualization API, here is my column data definition:
var dataTable = new google.visualization.DataTable();
dataTable.addColumn('date', 'Date');
dataTable.addColumn('number', 'Uptime');
dataTable.addColumn('string', 'Channel');
I want to group my rows by channels and these g...
Let's say I own/control a Facebook page where events are posted. I'd like to display these events on another website (In my case, a WordPress blog, but that's not the important part) on an "Upcoming events" page.
What I'm unsure about is: Is the Facebook API usable "externally" like this? I've downloaded the PHP library and got a demo a...
I am new to iPhone Application... I want to use GPS API in my iPhone Application, for getting current location of iPhone.. Can any one plz post some links for GPS API for iPhone ? Thanks..
...
The bit.ly info API returns URLs for thumbnail images. When I attempt to access these images, I receive an access denied error. How do you access the thumbnail images generated by bit.ly?
EDIT:
I am testing the image URL by taking the URL provided by the info API and using the browser to access. Bit.ly returns an Access Denied error ...
I am designing a REST service that could be used by many types of clients, most likely .Net, PHP, Flex and JavaScript. I am building the service using WCF and the REST starter kit. One of my main goals is to make it as simple as possible for all those clients to use the API.
Let's say that the API deals with zoos. When the client cre...
Hi all,
I have a list of domains and would like to get the:
PageRank for all the domains. So just an integer, there must be an API that returns this.
The number of results in Google
The position of the word of the domainname. For example, "google.com" would be the position of the word "google". This could be position 20.
Hopefully t...
Is it a good or bad idea to make setters in java return "this"?
public Employee setName(String name){
this.name = name;
return this;
}
This pattern can be useful because then you can chain setters like this:
list.add(new Employee().setName("Jack Sparrow").setId(1).setFoo("bacon!"));
instead of this:
Employee e = new Employee...
I am wondering why Qt uses Q before every class name rather than putting everything in a namespace. Is there any particular reason, such as making the names easy to search for, or is it just about brand names?
...
I am working on a PHP application that gets its input (image/text) from a mobile device and posts this to various social networks.
Now, I'm having some problems figuring out how to post to facebook WITHOUT facebook prompting me for permission. I am the only user so I can add my username and password in the code or I can have facebook pr...
Hello,
I have a question about the use off the http api from the company clickatell.
They actually have several api that you can use, amongst are xml and smtp also.
Does anyone have any experience with those, especially with the http api.
For the http api:
Does this php code actually doing the work in the background?
This line $re...
Good Morning SO Campers,
I'm interested in developing a social networking site. It will be run on a Linux dedicated server and must be written in PHP.
The site functionality will be a cross between FaceBook, Myspace and Yahoo. Specifically, the site needs to offer:
The ability for users to obtain a free email address.
Instant Messag...
i´m looking for some way to push goplanapp.com todos / maybe calendar too to nokia ovi todo.
idea is to have todo from goplanapp.com in my symbian nokia E 71 because 80 % of my todoso are business like 20 % private
...
Hello all. Today I am trying to make a store locator using google maps' api.
The store locator is to be set up like so:
two areas, one with a map containing all the stores in a given area (measured in a selectable radius from a center point), and one area with a list of all the stores on the map, their information, and of course a link t...
what FTP libraries come with .Net C#?
...
I'm looking for a document template and some writing/style guides to structure the content of a Developer Guide for a subsystem I am about to hand off to a client. This goes beyond documenting the public API - I want to walk developers through an easy process of writing a client for my subsystem, teaching them the API and other things th...
Since J2ME apps have so many possible devices they can run on, there's lots to consider during each step of development.
Are there websites that help you with the design process?
Statistics of API and MIDP version availability on phones of all manufacturers?
Browsing of APIs and Classes available by category?
Articles and reviews of A...
Hi,
I am working on a simple protocol stack for a small embedded system (multidrop, rs485 type stuff). In this stack, losely models after OSI layers:
Application
Network
Datalink
physical (serial driver)
Each layer has its own header / footer portion that wraps the payload of the layer above it.
I will be using my own buffer pool ...
is there any way to change file mode to hidden by flex?
for example
var myFile:File = new File(File.applicationDirectory.nativePath + File.seperator + "a.txt");
myFile.setHidden
...