问题描述
我正在尝试在基于React的Microsoft外接程序项目中获取文件的内容。 但是,当我调用getContentsOfFile()时,会收到一个GraphError,状态码为0,没有其他信息。 我知道正确的访问令牌,因为如果我调用“ me / drive / root:/Documents/SampleData.csv”,那么我会得到有效的响应。 我在这里想念什么?
import { ResponseType } from "@microsoft/microsoft-graph-client";
var graph = require('@microsoft/microsoft-graph-client');
function getAuthenticatedClient(accesstoken: string) {
// Initialize Graph client
const client = graph.Client.init({
// Use the provided access token to authenticate
// requests
authProvider: (done: any) => {
done(null,accesstoken);
}
});
return client;
}
export async function getContentsOfFile(itemId: string,accesstoken: string) {
const client = getAuthenticatedClient(accesstoken);
console.log(itemId);
const path = "/me/drive/items/" + itemId + "/content"
try {
const fileContents = await client.api(path).responseType(ResponseType.TEXT).get();
console.log(fileContents);
return fileContents;
} catch (error) {
console.log(error);
throw error;
}
}
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)