admin管理员组文章数量:1343856
I wonder wether it is somehow possible to add an authorization header to the call which is triggered by my message extension to my custom web service.
I couldn't find anything in MessagingExtensionActionResponse, TaskModuleContinueResponse or TaskModuleTaskInfo...
Thanks for your help, Anne
Example from MS for a message extension calling a URL on a custom web service:
protected override Task<MessagingExtensionActionResponse> OnTeamsMessagingExtensionFetchTaskAsync(ITurnContext<IInvokeActivity> turnContext, MessagingExtensionAction action, CancellationToken cancellationToken)
{
return new MessagingExtensionActionResponse
{
Task = new TaskModuleContinueResponse
{
Value = new TaskModuleTaskInfo
{
Height = 200,
Width = 400,
Title = "Task Module HTML Page",
Url = ".html",
},
},
};
I wonder wether it is somehow possible to add an authorization header to the call which is triggered by my message extension to my custom web service.
I couldn't find anything in MessagingExtensionActionResponse, TaskModuleContinueResponse or TaskModuleTaskInfo...
Thanks for your help, Anne
Example from MS for a message extension calling a URL on a custom web service:
protected override Task<MessagingExtensionActionResponse> OnTeamsMessagingExtensionFetchTaskAsync(ITurnContext<IInvokeActivity> turnContext, MessagingExtensionAction action, CancellationToken cancellationToken)
{
return new MessagingExtensionActionResponse
{
Task = new TaskModuleContinueResponse
{
Value = new TaskModuleTaskInfo
{
Height = 200,
Width = 400,
Title = "Task Module HTML Page",
Url = "https://myserver/htmlpage.html",
},
},
};
Share
Improve this question
asked Nov 19, 2024 at 14:34
AnneAnne
836 bronze badges
2
- Unfortunately, the standard MessagingExtensionActionResponse, TaskModuleContinueResponse, and TaskModuleTaskInfo do not directly support adding custom headers like authorization headers. – Sayali-MSFT Commented Nov 20, 2024 at 12:19
- Thanks for your answer. Is there any other possibility which I can use to achieve this or does the call from teams to the web service have to be unauthorized? – Anne Commented Nov 21, 2024 at 6:17
1 Answer
Reset to default 0One way is to handle the authorization within your custom web service. Here’s a general idea of how you can do it:
Ensure that your web service can handle authorization tokens. You can pass the token as a query parameter or in the body of the request.
When your message extension triggers the call, include the
authorization token in the request. This can be done by modifying the payload sent to your web service.
Here’s a simplified example of how you might modify the payload to include an authorization token:
const payload = {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer YOUR_AUTH_TOKEN'
},
body: JSON.stringify({
// Your existing payload data
})
};
fetch('https://your-custom-web-service-url', payload)
.then(response => response.json())
.then(data => {
// Handle the response data
})
.catch(error => {
console.error('Error:', error);
});
In this example, replace 'YOUR_AUTH_TOKEN' with the actual token you need to use for authorization.
本文标签: Teams Message Extension add Authorization Header to URL accessing costum web serverStack Overflow
版权声明:本文标题:Teams Message Extension: add Authorization Header to URL accessing costum web server - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743734714a2529793.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论