Created
April 23, 2012 04:22
-
-
Save aaronpk/2468855 to your computer and use it in GitHub Desktop.
handling geoloqi trigger post hook
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $post = json_decode(file_get_contents("php://input")); | |
| // user id | |
| $post->user->user_id; | |
| // layer id | |
| $post->layer->layer_id; | |
| // place id | |
| $post->place->place_id; | |
| // Also see: https://developers.geoloqi.com/api/trigger-callback | |
| // for the full documentation of fields returned. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment