3

一部のドメインでは、アプリケーションが機能しません。Google Appsドメイン構成を確認しましたが、Googleドライブが有効になっています。何か案は?

com.google.api.client.googleapis.json.GoogleJsonResponseException: 403 OK
{
  "code" : 403,
  "errors" : [ {
    "domain" : "global",
    "location" : "Authorization",
    "locationType" : "header",
    "message" : "The domain policy has disabled third-party Drive apps",
    "reason" : "domainPolicy"
  } ],
  "message" : "The domain policy has disabled third-party Drive apps"
}
    at com.google.api.client.googleapis.json.GoogleJsonResponseException.from(GoogleJsonResponseException.java:143)
    at com.google.api.client.googleapis.json.GoogleJsonResponseException.execute(GoogleJsonResponseException.java:187)
    at com.google.api.client.googleapis.services.GoogleClient.executeUnparsed(GoogleClient.java:279)
    at com.google.api.client.http.json.JsonHttpRequest.executeUnparsed(JsonHttpRequest.java:207)
    at com.google.api.services.drive.Drive$Files$Insert.executeUnparsed(Drive.java:307)
    at com.google.api.services.drive.Drive$Files$Insert.execute(Drive.java:331)
4

1 に答える 1

12

ユーザーに対してGoogleドライブサービスが有効になっている場合でも、管理者は、[アプリ]>[Googleアプリ]>[ドライブの設定]に移動し、[ユーザーにGoogleドライブアプリのインストールを許可する]をオフにすることで、ユーザーによるGoogleドライブアプリのインストールやGoogleドライブAPIの使用を制限できます。 「データアクセス」メニューの「」。

表示されているエラーメッセージは、これらのドメインで[ユーザーにGoogleドライブアプリのインストールを許可する]がオフになっていることを示しています。アプリケーションは、次の行に沿ってユーザーにメッセージを送信することにより、このエラーを処理する必要があります。

Sorry, you cannot use this application because your administrator has disabled 3rd party Google Drive apps. Please ask your administrator to allow Google Drive apps by opening the Google Apps control panel and going to Apps > Google Apps > Settings for Drive and making sure "Allow users to install Google Drive apps" in the "Data Access" menu is enabled.

于 2013-01-24T13:26:37.800 に答える