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
{{ message }}
This repository was archived by the owner on Nov 2, 2018. It is now read-only.
When posting to 'media/'.$post_id.'/comments' I get the following error:
I have attempted making the call using:
$instagram->secureRequests();$instagram->comments()->create($post_id, $this->input->post('text'));or
$instagram->secureRequests();$function = 'POST';$endpoint = 'media/'.$post_id.'/comments';$params = ['form_params' => $params];$instagram->request($function, $endpoint, $params);All my GET requests are working fine. I also make a POST request to likes and that is working correctly.