Attempting to share on my group via the JavaScript API is resulting in an error - Access to write groups denied (403 Forbidden). How can I resolve this issue?
IN.API.Raw("/groups/" + 10356772 + "/posts?format=json")
.method("POST")
.body(JSON.stringify({"title": "hi title", "summary": "hi summary"})) .result(onSuccess)
.error(onError);