I use Dropbox Core API to work with Dropbox. And I impement recently hwioauthbundle in Symfony for a fast authentication. Before this all function upload,download,list files work well. But I have this error :
/dropbox-auth-finish: bad request: Missing query parameter 'state'
It seems that the $_GET array doesn't contain state value, but I try to set this parameter with some values but it didn't work. And now I don't know what do. In the HTTP Response there isn't state parametrer.
If you know something, answer here.
list($accessToken,$userId, $urlState) = $this->webAuth->finish($_GET);
$this->dbxClient = new dbx\Client($accessToken, "PHP-Example/1.0");
Thank you