是否可以从VSTS外部访问VSTS数据存储?

时间:2018-08-16 18:51:05

标签: azure-devops azure-devops-extensions azure-devops-rest-api

我使用下面的代码访问VSTS扩展程序中的数据存储。

// Get data service
VSS.getService(VSS.ServiceIds.ExtensionData).then(function(dataService) {
    // Get all document under the collection
    dataService.getDocuments("MyCollection").then(function(docs) {
        console.log("There are " + docs.length + " in the collection.");
    });
});

是否可以在不使用VSTS的普通Web应用程序中使用它? 我只想访问存储在其他Web应用程序中的数据。

1 个答案:

答案 0 :(得分:1)

对此URL进行呼叫应该可以:

https://{yourvstsaccount}.extmgmt.visualstudio.com/_apis/ExtensionManagement/InstalledExtensions/{extensionpublisherName}/{extensionname}/Data/Scopes/{scope}/Collections/{collectionName}/Documents/{documentName}

例如: enter image description here