最近搜索


没有最近搜索

Alexandre Sabatier's Avatar

Alexandre Sabatier

已加入2021年5月13日

·

最后活动2021年10月22日

关注

0

关注者

0

活动总数

8

投票

1

订阅

3

活动概览

的最新活动 Alexandre Sabatier

Alexandre Sabatier 进行了评论,

评论Multiple language support

Would it be possible to generate dynamic content items from a manifest.json (like settings)?

查看评论 · 已于 2021年9月05日 发布 · Alexandre Sabatier

0

关注者

0

投票

0

评论


Alexandre Sabatier 进行了评论,

社区评论 Developer - Zendesk Apps Framework (ZAF)

Yes, everything works fine outside of Zendesk or with a non-secure parameter.

However, we followed one of your examples and simply replaced the "method" attribute with "type" in our code snippet.

...and it is now working! (also, thanks for the side note :)

查看评论 · 已于 2021年3月17日 发布 · Alexandre Sabatier

0

关注者

0

投票

0

评论


Alexandre Sabatier 进行了评论,

社区评论 Developer - Zendesk Apps Framework (ZAF)

I can't really wrap my head around the "data" attribute and the fact it is setting a body as query parameters. Is this the only way to send a body? My target endpoint returns a parsing error (400) only with client.request(), which we need to send a secure setting. It works fine with GET since there is no body.

var settings = {
method: 'PUT',
url: `url`,
contentType: 'application/json;charset=utf-8',
headers: {
"Accept": "application/json",
"Authorization": "Basic {{setting.token}}"
},
data: JSON.stringify({
Description: `${desc}`,
Owner: `${owner}`
}),
cors: false,
dataType: "json",
secure: true,
httpCompleteResponse: true
}

查看评论 · 已于 2021年3月17日 发布 · Alexandre Sabatier

0

关注者

0

投票

0

评论


Alexandre Sabatier 进行了评论,

社区评论 Developer - Zendesk Apps Framework (ZAF)

Hi @..., thanks for covering all the different options we have in Zendesk!

With a server that is not accepting cors, I am using the Method 3 and pass the following GET request header through client.request(): 'x-csrf-token': 'Fetch'. Unfortunately the header is not being sent at all.

Would you have any idea why this happens? I can see it when setting client.request to cors: true or using $.ajax, etc. but cannot use it since the server is not cors-compliant.

Thanks!

查看评论 · 已于 2021年3月17日 发布 · Alexandre Sabatier

0

关注者

0

投票

0

评论