谷歌Api,认证

时间:2018-01-24 10:46:46

标签: java c#

我需要连接到谷歌驱动器槽服务帐户 我在Java中找到了代码,但我无法在c#

中进行转换

任何人都可以在c#中转换此代码:

import com.google.api.client.googleapis.auth.oauth2.GoogleCredential;
import com.google.api.services.sqladmin.SQLAdminScopes;

GoogleCredential credential = GoogleCredential.fromStream(new FileInputStream("MyProject-1234.json"))
    .createScoped(Collections.singleton(SQLAdminScopes.SQLSERVICE_ADMIN));

1 个答案:

答案 0 :(得分:2)

您应该可以使用Google为其Drive API和C#库提供的示例

来实现此目的

https://developers.google.com/api-client-library/dotnet/guide/aaa_oauth

请参阅标题为“ ServiceAccountCredential

的部分