我需要连接到谷歌驱动器槽服务帐户 我在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));
答案 0 :(得分:2)
您应该可以使用Google为其Drive API和C#库提供的示例
来实现此目的https://developers.google.com/api-client-library/dotnet/guide/aaa_oauth
请参阅标题为“ ServiceAccountCredential ”
的部分