我在dialogflow中创建了一个代理。我想知道是否可以通过python发送请求并从dialogflow代理获取响应。 .net我也有办法。我们通过clientAccessToken访问它。
public class ViewModel
{
public IEnumerable Items { get; set; }
public IEnumerable SelectedItems { get; set; }
public ViewModel()
{
Items = new List<string> { "Test", "Test1" };
SelectedItems = new List<string> { "Test" };
}
}
以上代码在c#中。 有什么办法可以在python中做同样的事情?