简体   繁体   English

Skype for Business频道是否支持日语字符?

[英]Does Skype for Business channel support Japanese characters?

Does Bot Framework for Skype for Business support Japanese characters? Bot Framework for Skype for Business是否支持日语字符?

As shown in the attached screen shot, we are receiving all "?????"s for Japanese characters. 如所附的屏幕快照所示,我们将收到所有日语字符的“ ?????”。

日语字符

Skype for Business can display Japanese Characters, like in my demo below: Skype for Business可以显示日语字符,如下面的演示中所示:

[Serializable]
public class Dialog44558422 : IDialog<object>
{
    public async Task StartAsync(IDialogContext context)
    {
        context.Wait(MessageReceivedAsync);
    }

    private async Task MessageReceivedAsync(IDialogContext context, IAwaitable<object> result)
    {
        var activity = await result as Activity;
        await context.PostAsync("こんにちは、これはテストです");
        context.Wait(this.MessageReceivedAsync);
    }
}

Output: 输出: 样品

You should really try to see how/what you are passing to the bot 您应该真正尝试了解传递给机器人的方式/方式

I reported the issue to Microsoft in mid-June, and they had already noticed the problem. 我在6月中旬向Microsoft报告了此问题,他们已经注意到了这个问题。 They said: 他们说:

This is actually an issue in the sfb controller. 这实际上是sfb控制器中的问题。 This is fixed now and currently being validated internally. 现在已解决此问题,目前正在内部进行验证。 This is expected to roll out sometime next week or early in July. 预计将在下周或七月初的某个时间推出。

The fix has now been officially released, and I can confirm that it solves the problem. 该修复程序现已正式发布,我可以确认它可以解决问题。 Now Japanese characters are sent correctly: 现在日语字符已正确发送:

正确发送日语字符的图像

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM