private function gapiOAuth2::base64URLDecode in Google Analytics Statistics 7.2
File
- includes/
gapi.class.php, line 576
Class
- gapiOAuth2
- OAuth2 Google API authentication
Code
private function base64URLDecode($data) {
return base64_decode(str_pad(strtr($data, '-_', '+/'), strlen($data) % 4, '=', STR_PAD_RIGHT));
}