ryanvolum / offline-directline

Unofficial package to emulate the bot framework connector locally.
https://www.npmjs.com/package/offline-directline
78 stars 44 forks source link

OPTIONS `/directline/conversations/:conversationId` not found #9

Closed chiayenhung closed 6 years ago

chiayenhung commented 6 years ago

When I went through the examples in the README. First two requests get success.

  1. OPTIONS /directline/conversations
  2. POST /directline/conversations

But the sub-sequential calls OPTIONS /directline/conversations/:conversationId getting 404 not found

ryanvolum commented 6 years ago

There's no endpoint for OPTIONS on that uri. What examples in what README are you talking about?

ryanvolum commented 6 years ago

If you take a look at bridge.ts, you can see all of the API routes that are implemented. All routes that the bot connector uses are at least stubbed out - those which aren't implemented have log a console.warn.

ryanvolum commented 6 years ago

I think I better understand your problem @chiayenhung and believe it's the same issue as issue #2

alexknipfer commented 5 years ago

@chiayenhung Did you ever find a solution to this, currently dealing with the same?