소스 검색

Oauth 2.0: use space as delimiter for scopes.

bubble
Ivan Goncharov 9 년 전
committed by Mohsen Azimi
부모
커밋
cae9755076
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      lib/swagger-oauth.js

+ 1
- 1
lib/swagger-oauth.js 파일 보기

@@ -147,7 +147,7 @@ function handleLogin() {
url += '&redirect_uri=' + encodeURIComponent(redirectUrl);
url += '&realm=' + encodeURIComponent(realm);
url += '&client_id=' + encodeURIComponent(clientId);
url += '&scope=' + encodeURIComponent(scopes);
url += '&scope=' + encodeURIComponent(scopes.join(' '));

window.open(url);
});


불러오는 중...
취소
저장