This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@startuml | |
title | |
OAuthフロー | |
フロー:デバイス認可フロー(+(オプション)リフレッシュトークン) | |
クライアントタイプ:ブラウザレスデバイス | |
end title | |
actor "リソースオーナー\n(ユーザー)" as user |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@startuml | |
title | |
OAuthフロー(PKCE/PAR/DPoP含む) | |
フロー:認可コードグラント(+リフレッシュトークン) | |
クライアントタイプ:シングルページアプリケーション(OAuth:Public) | |
end title | |
actor "リソースオーナー\n(ユーザー)" as user |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@startuml | |
title | |
OAuthフロー(PKCE/PAR/DPoP含む) | |
フロー:認可コードグラント(+リフレッシュトークン) | |
クライアントタイプ:ネイティブアプリ(OAuth:Public) | |
end title | |
actor "リソースオーナー\n(ユーザー)" as user |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@startuml | |
title | |
OAuthフロー(PKCE/PAR/DPoP含む) | |
フロー:認可コードグラント(+リフレッシュトークン) | |
クライアントタイプ:ウェブサービス(OAuth:Confidential) | |
end title | |
actor "リソースオーナー\n(ユーザー)" as user |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@startuml | |
skinparam monochrome reverse | |
skinparam sequence { | |
GroupBackgroundColor Aqua | |
} | |
"client" -> "PDS" : <b>1</b> getServiceAuth | |
activate "PDS" | |
"client" <-- "PDS" : <b>2</b> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @fileoverview 放送大学 教養学部 自然と環境コース 2021年度 履修順参考 | |
* @author twitter:@billstw | |
* | |
* 放送大学 授業科目案内 教養学部 2021年度 | |
* https://www.ouj.ac.jp/hp/kamoku/2021/kyouyou/C/index.html | |
* | |
* 放送大学 2021年度 第1学期 学部授業科目案内 | |
* https://www.ouj.ac.jp/booklet/assets/pdf/2021/08_2021-1_gakubu_kamoku.pdf | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const start_time = Date.now(); | |
function timestamp_log(message) { | |
const duration = Date.now() - start_time; | |
console.log(`[${duration}]: ${message}`); | |
} | |
timestamp_log('script start'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const start_time = Date.now(); | |
function timestamp_log(message) { | |
const duration = Date.now() - start_time; | |
console.log(`[${duration}]: ${message}`); | |
} | |
timestamp_log('script start'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const start_time = Date.now(); | |
function timestamp_log(message) { | |
const duration = Date.now() - start_time; | |
console.log(`[${duration}]: ${message}`); | |
} | |
timestamp_log('script start'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const start_time = Date.now(); | |
function timestamp_log(message) { | |
const duration = Date.now() - start_time; | |
console.log(`[${duration}]: ${message}`); | |
} | |
timestamp_log('script start'); |
NewerOlder