最近の検索
最近の検索はありません

Alex
参加日2023年8月09日
·
前回のアクティビティ2024年1月25日
フォロー中
0
フォロワー
0
合計アクティビティ
4
投票
0
受信登録
2
アクティビティの概要
バッジ
記事
投稿
コミュニティへのコメント
記事へのコメント
アクティビティの概要
さんの最近のアクティビティ Alex
Alexさんが投稿を作成しました:
投稿 Developer - Zendesk Apps Framework (ZAF)
I want to show modal in some cases. And handle event like "close modal".
I implement it like in documentation.
let thisClass = this,
width = '400px',
height = '620px',
option = {
location: 'modal',
size: {
width: width,
height: height
}
};
thisClass.clientZendesk = ZAFClient.init();
thisClass.clientZendesk.invoke('instances.create', option).then(function(modalContext) {
let instanceGuid = modalContext['instances.create'][0].instanceGuid,
modalClient = thisClass.clientZendesk.instance(instanceGuid);
modalClient.on('modal.close', function() {
console.log("CLOSED modal")
});
});
But console.log did not work. Did not execute callback for event 'modal.close'
modalClient.on('modal.close', function() {
SOME_FUNCTION()
});
what wrong?
投稿日時:2024年1月25日 · Alex
0
フォロワー
2
投票
1
コメント
Alexさんがコメントを作成しました:
コメントSecurity and user access in Zendesk Support
For generate token i use link https://{{sub-domain}}.zendesk.com/oauth/tokens
after that try send request to endpoint https://api.getbase.com/v2/leads
and receive response:
"error": {
"code": "unauthorized",
"details": "Required access token is missing, malformed, expired, or invalid.",
"message": "request is unauthorized"
},
Where problem? how it fix? i asked twice to support but did not receive suggestion
コメントを表示 · 投稿日時:2023年8月09日 · Alex
0
フォロワー
0
投票
0
コメント