Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update echobot README #68

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions samples/echobot/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This Microsoft Teams bot uses the [msbotbuilder-go](https://github.com/infraclou

#### Step 1: Register MS BOT

Follow the official [documentation](https://docs.microsoft.com/en-us/microsoftteams/platform/bots/how-to/create-a-bot-for-teams#register-your-web-service-with-the-bot-framework) to create and register your BOT.
Follow the official [documentation](https://docs.microsoft.com/en-us/azure/bot-service/abs-quickstart) to create and register your BOT.

Copy `APP_ID` and `APP_PASSWORD` generated for your BOT.

Expand All @@ -33,11 +33,11 @@ Now, in separate terminal, run [ngrok](https://ngrok.com/download) command to ex
$ ngrok http 3978
```

Copy `https` endpoint, go to [Bot Framework](https://dev.botframework.com/bots) dashboard and set messaging endpoint under Settings.
Copy `https` endpoint, go to [Azure Portal](https://portal.azure.com) dashboard, select your bot under `Resources`, click `Configuration`, and paste the URL into `Messaging endpoint`. Append `/api/messages` to the URL, i.e. it should look like `https://b7fd-92-6-238-167.eu.ngrok.io/api/messages`.

#### Step 4: Test the BOT

You can either test BOT on BotFramework portal or you can create app manifest and install the App on Teams as mentioned [here](https://docs.microsoft.com/en-us/microsoftteams/platform/bots/how-to/create-a-bot-for-teams#create-your-app-manifest-and-package).
Test the bot by going to [Azure Portal](https://portal.azure.com), select your bot under `Resources`, and click `Test in Web Chat` (under the `Settings` header). Note that you will need to update the `Messaging endpoint` URL in the bot configuration whenever you restart ngrok.


## Understanding the example
Expand Down