Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to build a small php app that connects to the Klout API with a simple post

e.g. http://api.klout.com/1/klout.json?users=username

(i know this is missing the API key and a valid username, just an example)

The response is returned either via XML or json.

This is the first time i have tried to use and API this way and after hours of searching the internet still have not managed to figure it out.

The response returns fine in the browser when the post is typed in the address bar so i know that it works fine.

How would I go about posting it from within the app and putting the response into a variable?

Thanks

Chris

share|improve this question

1 Answer

up vote 0 down vote accepted

use CURL or XML-RPC or SoapClient to do this programatically

CURL

XML-RPC

SoapClient

These are references where you can start with any one of these

share|improve this answer
ok, Thank you. I will check them out. – Chris Till Feb 20 '12 at 11:11
All sorted, Curl is awesome. Thank you so much for your help. – Chris Till Feb 20 '12 at 11:45
please accept the answer if it has helped you – maxjackie Feb 20 '12 at 12:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.