Retrieving Data related to a top-level object from parse.com using PHP
- by Albeert Tw
I am retrieve related data using parse.com and PHP
I get the top-leve object without problems but I can't access related data. ([myRelation] => stdClass Object ( [__type] => Relation [className] => other))
Please refer to my code below:
$className = "myClass";
$url = 'https://api.parse.com/1/classes/' . $className;
$appId = 'xxxxxx'; …