I am trying to make an api call to a php script on another server while including the same php script on my server. Am i going about this the right way or does anybody have any ideas of how to do it?
jatar_k
5:58 pm on Jan 12, 2006 (gmt 0)
usually if you make a call to an API on another server it will return data back to you. You shouldn't need to include that api script (I am assuming that is the file you are trying to include).
chief stains
9:29 am on Jan 13, 2006 (gmt 0)
the api call will open an application which requires user interaction and then, when they are finished, the data is returned... is there any way to do this..?
jatar_k
3:40 pm on Jan 13, 2006 (gmt 0)
sure
Does this API not come with some kind of manual? or some kind of prepared code? or even a list of supported methods?
depending on what it is you are doing it could be done using SOAP, cURL or maybe even sockets.
chief stains
10:26 pm on Jan 16, 2006 (gmt 0)
its an api i wrote myself. it has to be loacted on another server. The api is returning results thorugh a http post method...