0

Prediction Api 1.5v を使用する Google アプリ エンジン プロジェクトを作成しました。クライアント ID とクライアント シークレットを使用して Google o2Auth 認証を使用して、ローカルの平均 localhost:8888 で実行すると正常に動作します。エラーが与えられた

java.security.AccessControlException: アクセスが拒否されました ("java.io.FilePermission" "/base/data/home/apps/s~charn-project/1.369216781240579013/.credentials" "write")

私のo2authのコードは次のとおりです

GoogleClientSecrets clientSecrets = GoogleClientSecrets.load(JSON_FACTORY, new InputStreamReader(Database.class.getResourceAsStream("/client_secrets.json"))); System.out.println("cl"+clientSecrets.getDetails().getClientSecret());

    if (clientSecrets.getDetails().getClientId().startsWith("Enter")
            || clientSecrets.getDetails().getClientSecret().startsWith("Enter ")) {

        System.out.println(
              "Enter Client ID and Secret from https://code.google.com/apis/console/?api=prediction "
              + "into prediction-cmdline-sample/src/main/resources/client_secrets.json");
          System.exit(1);
        }
        // set up file credential store
       FileCredentialStore credentialStore = new FileCredentialStore(
            new File(System.getProperty("user.home"), ".credentials/prediction.json"), JSON_FACTORY);
        // set up authorization code flow
       System.out.println("cre"+credentialStore);
       GoogleAuthorizationCodeFlow flow = new GoogleAuthorizationCodeFlow.Builder(
            httpTransport, JSON_FACTORY, clientSecrets,
            Collections.singleton(PredictionScopes.PREDICTION)).setCredentialStore(credentialStore)
            .build();

        // authorize
        return new AuthorizationCodeInstalledApp(flow, new LocalServerReceiver()).authorize("user");

この行に問題がある可能性があります

FileCredentialStore credentialStore = new FileCredentialStore( new File(System.getProperty("user.home"), ".credentials/prediction.json"), JSON_FACTORY);

4

1 に答える 1

0

ファイルへの書き込みは現在、App Engine ではサポートされていません。

ソース: https://developers.google.com/appengine/kb/java?csw=1#writefile

高レプリケーション データ ストア (HRD) はかなり使いやすく、Objectify ( https://code.google.com/p/objectify-appengine/ )のようなプロジェクトではさらに使いやすくなっています。それをチェックすることをお勧めします。

于 2013-09-20T00:43:03.837 に答える