我已经创建了私有存储库,并想访问RAW URL 没有令牌。
下面,我正在访问我的私人网址,例如:
问题是:一段时间后,我无法访问RAW URL。
对于您的任何帮助,我们将不胜感激,如何在不使令牌失效或没有令牌的情况下访问私有RAW Repo URL。
我正在访问原始URL的示例代码
window.onload = function() {
const ui = SwaggerUIBundle({
url: "https://raw.githubusercontent.com/xxxx/xxxx/master/eaa.swagger.json?token=AMIOCHBKPQD6UZHEGI3WZIS5AM25M",
dom_id: '#swagger-ui',
deepLinking: true,
validatorUrl: null,
presets: [
SwaggerUIBundle.presets.apis,
SwaggerUIStandalonePreset
],
plugins: [
SwaggerUIBundle.plugins.DownloadUrl
],
layout: "StandaloneLayout"
})
window.ui = ui
}