我想使用"一个驱动器Api"使用JavaScript:https://dev.onedrive.com/auth/msa_oauth.htm 我得到了#34; access_token"使用方法"代码流"。我明白了:
chart = new ChartistChart() { Title = "My fancy chart" };
series = new List<ChartistMetaValue>();
*some code for getting the statistics*
chart.Series.Add(series);
chartistLineCharts.Add(chart);
我有&#34; access_token&#34;但是......我不知道如何使用它。我该怎么办?
答案 0 :(得分:0)
我的应用使用AngularJS进行http调用,如下所示:
$scope.getUserAlbums = function (accessToken) {
var userAlbumUrl = "https://api.onedrive.com/v1.0/drive/root/children?access_token=" + accessToken;
$http.get(userAlbumUrl).success(function (data) {
$scope.albums = data.value;
});
};
如您所见,我将访问令牌附加到URL的末尾。我没有jQuery示例,但我希望它会类似。