Hi All,
Is there any "correct" way to get the cursor from a Disqus response
using the PHP client library?
The disqusapi.php:__call function returns $data->response and doesn't
seem to do anything at all with $data->cursor. By returning $data-
>response and not $data – the user then has no way to get the cursor.
For my needs, I hacked this feature in the following way:
https://github.com/WilliamDenniss/disqus-php/commit/63b218437d7c5457da199ca4f899e1a7ac4e5b98
It stores the most recent cursor in the $api method which you can
retrieve with $api->lastCursor.
Is there a better way to do this? Should I file a 'pull request' for
this hack?
Cheers,
Will