I want to Deploy my Bot from Bot framework Composer to azure function app (node.js, ~12) and azure channel registration for testing and deploying to other channels.
Deploy Bot from Bot framework composer to azure function app
1k Views Asked by dinirichard At
2
There are 2 best solutions below
3
MIkey
On
I am having similar trouble. I did follow Microsft standard deployment procedure by running the following script:
node provisionComposer.js --subscriptionId= --name= --appPassword= --environment=
But, no luck. the script failed and returned the following error:
using tenant id : creating app registration user was not found ** provision failed **
I did make sure that I put in the right "subscription id".
Can any she some light on this?
Thanks.
Related Questions in NODE.JS
- Using Puppeteer to scrape a public API only when the data changes
- How to request administrator rights?
- How do I link two models in mongoose?
- Variable inside a Variable, not updating
- Unable to Post Form Data to MongoDB because of picturepath
- Connection terminated unexpectedly while performing multi row insert using pg-promise
- Processing multiple forms in nodejs and postgresql
- Node.js Server + Socket.IO + Android Mobile Applicatoin XHR Polling Error...?
- How to change the Font Weight of a SelectValue component in React when a SelectItem is selected?
- My unban and ban commands arent showing when i put the slash
- how to make read only file/directory in Mac writable
- How can I outsource worker processes within a for loop?
- Get remote MKV file metadata using nodejs
- Adding google-profanity-words to web page
- Products aren't displayed after fetching data from mysql db (node.js & express)
Related Questions in AZURE-FUNCTIONS
- Azure Function: switch from consumption to premium plan for 1 hour daily automatically?
- mutual tls authentication between app service and function app
- Azure Application Insights Not Displaying Custom Logs for Azure Functions with .NET 8
- Encountered an error (ServiceUnavailable) from host runtime on Azure Function App
- How to migrate from Azure Static Web Apps to Azure App Service?
- Logic Apps and long running Azure Function (Powershell)
- Not getting Information or Trace logs in Application Insights in .NET 8 function
- Azure Queue Functions | Trigger when multiple queue functions executions with a specific message property ends
- No HTTP Trigger Found In Azure function
- Python middleware for azure function warmup
- Problem deploying an Azure Function to a Function App
- Logic App Function App reading and writing Binary Files
- SwaggerUI on Azure Functions (.NET 8 Update)
- Azure Function Javascript Invocation hooks usage with HTTP triggers
- Error indexing method 'IntegrationFunction' Can't convert from type 'Microsoft.Azure.EventHubs.EventData
Related Questions in AZURE-BOT-SERVICE
- multiple azure chatbots doesn't authenticate
- How to fix Unable to execute action botFramework/create. Error message: API call to Developer Portal failed
- I have problems with using Azure Bot in Personal Chat in Microsoft Teams
- Bot does not work with one-to-one chat messages in Microsoft Teams
- Azure Bot using Language Service what's the preferred method
- Adding a Bot to Azure Communication Service Chat Thread using the Microsoft App Id failed
- Issue with deploying Rasa bot on Teams via Azure Bot
- Botframework webchat Directline | How to get rid op 502 error while streaming openai answers
- How to add authentication to an exposed endpoint in Azure Bot Service?
- Error deploying echo-bot.py on Azure. ModuleNotFoundError: No module named 'aiohttp'
- How to replace expired secret key without restarting BOT
- MS Teams Bot message-extension- Agent returned unsuccessful status code InternalServerError
- How to view error logs for Azure Bot Service that uses a Messaging endpoint
- Teams Bot OAuthPrompt Not returning Tokenresponse for a couple of company members
- Bot Framework - Sign out a user completely in Teams
Related Questions in BOT-FRAMEWORK-COMPOSER
- In bot framework composer in Teams channel is there a way to determine file size of an uploaded file?
- Luis build failed: An application with the same name("name") already exist
- How can i add a Custom Translation Middleware to Bot Composer in node js
- How to add C# waterfall dialog to Bot Composer
- Publish a Bot created in Bot framework Composer using Azure CLI
- How do deal with special characters in Bot Framework Composer?
- How to use Ilogger in my bot's custom action components?
- Bot Framework Package versions mismatch has broken Bot
- Custom Error Messages and Exception Handling in Bot Framework Composer
- The subscription does not have QuotaId/Feature required by SKU 'S0' from kind 'QnAMaker'
- Is there any way we can use 'md5' encoding in Bot Framework Composer?
- event Received trigger is not fired when sending an event activity in bot framework composer
- Is there a way to get detailed logs on LUIS classifications?
- How to create adaptive cards dynamically display them in carousel- in Microsoft BOT COMPOSER
- QnA Maker "Context Only" not working in live Bot or Emulator
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?

If you want to deploy your bot via Bot framework Composer, you should config your
Publish Configurationin your publish profile. Please follow this official guide to get the publish config and paste it into your publish profile.I tested the whole process on my side, it works perfectly for me:
Paste this to publish profile to deploy:
Test my echo bot:
Btw, while I test the whole process, I got a function runtime error after deployment :
When I change Azure function platform from 32 to 64, this issue got solved: