You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am instantiating the Emma class once and then making several API calls. I noticed some errors due to leftover data in $this->_postData after each request. I resolved the issue by adding $this->_postData = array(); before curl_close($ch);
I have also added $this->_params = array(); before curl_close($ch); to be safe.
The text was updated successfully, but these errors were encountered:
I am instantiating the Emma class once and then making several API calls. I noticed some errors due to leftover data in $this->_postData after each request. I resolved the issue by adding $this->_postData = array(); before curl_close($ch);
I have also added $this->_params = array(); before curl_close($ch); to be safe.
The text was updated successfully, but these errors were encountered: