我使用Microsoft Graph .NET客户端库(https://github.com/microsoftgraph/msgraph-sdk-dotnet)。
我想调用此API方法:
https://docs.microsoft.com/en-us/graph/api/domain-list-verificationdnsrecords?view=graph-rest-1.0
GET https://graph.microsoft.com/v1.0/domains/{domain-name}/verificationDnsRecords
我尝试执行以下操作:
List<QueryOption> options = new List<QueryOption>
{
new QueryOption("domain-name", domain)
};
var r = await graphClient.Domains.Request(options).Select(p => p.VerificationDnsRecords).GetAsync();
但是出现类似“未知域名”参数的错误。我尝试使用id
而不是domain-name
来获得同样的效果。
怎么了?怎么办?
答案 0 :(得分:0)
找到了如何设置域名的解决方案。应该是:
bus.js
没有任何// bus.js
export default new Vue()
// Component A
import bus from './bus'
bus.$emit('new_parts', this.parts.data)
// Component B
import bus from './bus'
bus.$on('new_parts', (data) => {
alert(value);
})