I've written a php script that reads data from facebook user's profile and sends it to my server through ajax .This script needs to run in intervals, so i added a cron. All the php functions and interactions with databases through mysql are working with cron. But ajax is not. I know it's(javascript) a client-side script, but is there any other way ? Pls help as to how i can execute javascript(ajax) written in a file through cron .
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.
|
|
Ajax calls consist of an API (application programming interface). The API is the system of calls through which a client (the browser) communicates with a server (the server). In your case, the client is the computer on which the PHP script is running and the server is your server. If you can replicate the API used in JavaScript in PHP then you are away on hack. For example, suppose the sever you were communicating with had a service called "postupdate.php" and it took one value called "update", the API call might look like this in JavaScript:
The same API call might look like this in PHP:
This example assumes the API uses the HTTP GET method. APIs that use HTTP POST methods are more complicated but can be used in PHP as well. |
|||||||||
|
