├── .gitattributes ├── .gitignore ├── GoogleServiceAccountAccessToken.sln ├── GoogleServiceAccountAccessToken ├── App.config ├── GoogleServiceAccount.cs ├── GoogleServiceAccountAccessToken.csproj ├── Keys │ ├── C-SharpCorner-0338f58d564f.json │ └── C-SharpCorner-e0883ada1a3f.p12 ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── TestJSONKey.cs ├── TestP12Key.cs └── packages.config ├── Keys ├── C-SharpCorner-0338f58d564f.json └── C-SharpCorner-e0883ada1a3f.p12 └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/GoogleServiceAccountAccessToken-CSharp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/GoogleServiceAccountAccessToken-CSharp/HEAD/.gitignore -------------------------------------------------------------------------------- /GoogleServiceAccountAccessToken.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/GoogleServiceAccountAccessToken-CSharp/HEAD/GoogleServiceAccountAccessToken.sln -------------------------------------------------------------------------------- /GoogleServiceAccountAccessToken/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/GoogleServiceAccountAccessToken-CSharp/HEAD/GoogleServiceAccountAccessToken/App.config -------------------------------------------------------------------------------- /GoogleServiceAccountAccessToken/GoogleServiceAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/GoogleServiceAccountAccessToken-CSharp/HEAD/GoogleServiceAccountAccessToken/GoogleServiceAccount.cs -------------------------------------------------------------------------------- /GoogleServiceAccountAccessToken/GoogleServiceAccountAccessToken.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/GoogleServiceAccountAccessToken-CSharp/HEAD/GoogleServiceAccountAccessToken/GoogleServiceAccountAccessToken.csproj -------------------------------------------------------------------------------- /GoogleServiceAccountAccessToken/Keys/C-SharpCorner-0338f58d564f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/GoogleServiceAccountAccessToken-CSharp/HEAD/GoogleServiceAccountAccessToken/Keys/C-SharpCorner-0338f58d564f.json -------------------------------------------------------------------------------- /GoogleServiceAccountAccessToken/Keys/C-SharpCorner-e0883ada1a3f.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/GoogleServiceAccountAccessToken-CSharp/HEAD/GoogleServiceAccountAccessToken/Keys/C-SharpCorner-e0883ada1a3f.p12 -------------------------------------------------------------------------------- /GoogleServiceAccountAccessToken/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/GoogleServiceAccountAccessToken-CSharp/HEAD/GoogleServiceAccountAccessToken/Program.cs -------------------------------------------------------------------------------- /GoogleServiceAccountAccessToken/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/GoogleServiceAccountAccessToken-CSharp/HEAD/GoogleServiceAccountAccessToken/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GoogleServiceAccountAccessToken/TestJSONKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/GoogleServiceAccountAccessToken-CSharp/HEAD/GoogleServiceAccountAccessToken/TestJSONKey.cs -------------------------------------------------------------------------------- /GoogleServiceAccountAccessToken/TestP12Key.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/GoogleServiceAccountAccessToken-CSharp/HEAD/GoogleServiceAccountAccessToken/TestP12Key.cs -------------------------------------------------------------------------------- /GoogleServiceAccountAccessToken/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/GoogleServiceAccountAccessToken-CSharp/HEAD/GoogleServiceAccountAccessToken/packages.config -------------------------------------------------------------------------------- /Keys/C-SharpCorner-0338f58d564f.json: -------------------------------------------------------------------------------- 1 | Generate your own keys before running -------------------------------------------------------------------------------- /Keys/C-SharpCorner-e0883ada1a3f.p12: -------------------------------------------------------------------------------- 1 | Generate your own keys before running -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AshV/GoogleServiceAccountAccessToken-CSharp/HEAD/README.md --------------------------------------------------------------------------------