Пытаюсь отправить запись на стену, как сказано в инструкции:

Код AS3:
ForticomAPI.addEventListener(ApiCallbackEvent.CALL_BACK, handleApiCallback);
var request : Object = {method : "stream.publish", session_key: this.sessionKey, message : text};
request = SignUtil.signRequest(request, true);
ForticomAPI.showConfirmation("stream.publish", text, request["sig"]);
function handleApiCallback(event : ApiCallbackEvent):void
{
trace(event.method, event.data, event.result);
if (event.result== "ok")
{
// user accepted action
request["resig"] = event.data;
// finally you can send request to server
// этот метод не из инструкции, там не было сказано, как отправлять, поступил по логике. Именно тут и возникает ошибка
ForticomAPI.send("stream.publish", { session_key:this.sessionKey, message: text }, request["resig"] );
}
else
{
// user declined action
}
}
Но флеш выдает:

Код:
Sending showConfirmation (stream.publish,Do you want to notify friends about your great success on this week?,b172be8d546143f12e3bb2e565de70e5)
showConfirmation cb9297825db40eca16327137ad206a1aa23239b0 ok
CLI: Method stream.publish, arguments [object Object],cb9297825db40eca16327137ad206a1aa23239b0
Sending stream.publish ([object Object],cb9297825db40eca16327137ad206a1aa23239b0)
SecurityError: Error #2000: Отсутствует активный контекст безопасности.
Что не так?