BotFrameworkClientImpl class
构造函数
Bot |
方法
post |
构造函数详细信息
BotFrameworkClientImpl(ServiceClientCredentialsFactory, string, fetch)
new BotFrameworkClientImpl(credentialsFactory: ServiceClientCredentialsFactory, loginEndpoint: string, botFrameworkClientFetch?: fetch)
参数
- credentialsFactory
- ServiceClientCredentialsFactory
- loginEndpoint
-
string
登录 URL。
- botFrameworkClientFetch
-
fetch
要用于 BotFrameworkClient的自定义 Fetch 实现。
方法详细信息
postActivity<T>(string, string, string, string, string, Activity)
function postActivity<T>(fromBotId: string, toBotId: string, toUrl: string, serviceUrl: string, conversationId: string, activity: Activity): Promise<InvokeResponse<T>>
参数
- fromBotId
-
string
发送活动的机器人的 MicrosoftAppId。
- toBotId
-
string
接收活动的机器人的 MicrosoftAppId。
- toUrl
-
string
接收活动的机器人的 URL。
- serviceUrl
-
string
技能主机的回调 URL。
- conversationId
-
string
用于与技能对话的对话 ID。
- activity
-
Activity
要转发的活动。
返回
Promise<InvokeResponse<T>>
表示异步操作的 promise。