i want to display whatever the response of flickr.test.echo was on the page using rest (jquery ajax - because thats what im using)
i need to supply an api_key
The REST Endpoint URL is http://api.flickr.com/services/rest/
To request the flickr.test.echo service, invoke like this:
http://api.flickr.com/services/rest/?method=flickr.test.echo&name=value
By default, REST requests will send a REST response.
To return the response in REST format, send a parameter "format" in the request with a value of "rest". When using the REST request method, the response defaults to REST.
A method call returns this:
[xml-payload-here]
If an error occurs, the following is returned:
i got that from here http://www.flickr.com/services/api/request.rest.html
This is the method im interested in http://www.flickr.com/services/api/flickr.test.echo.html
please help.