I have developed an application in the old 2009 PHP SDK and now, switching to the latest PHP SDK, I am getting errors in the cookies handling function.
For instance I used to set an invited cookie for user who had invited users ...
$invited = $facebook->api_client->data_getCookies($user, "invited");
Based on the result of the above I would return an interface and also I would use the below to set the cookie.
$invited = $facebook->api_client->data_setCookie($user, "invited", '1', time() - (7 * 24 * 60 * 60), '/');/* */
Could you suggest how these have been ported on the Graph API? Do i need a different API?