0

Google ドライブの Realtime Playground で作成されたファイルがOpen With機能をサポートしていることがわかります。プレビューは利用できませんが、クリックしてプレイグラウンド アプリを再度開くことができます。アプリで同じことを行うにはどうすればよいですか。リスト項目を追加/削除するデモ 1 を作成し、Google リアルタイム プレイグラウンド機能と同様に、Google ドライブにファイルを作成します。open withもご用意しております。

ここに画像の説明を入力作成したアプリを含む Google アプリ ファイル。しかし、それをクリックすると、

申し訳ありませんが、開こうとしたすべてのファイルに対してこのアプリを承認できませんでした。もう一度やり直してください。

ここに画像の説明を入力 基本的にカルマが悪いのか、それとも客観的な理由があって見逃しているのか。


最初の答えは、私がしなければならないことを示唆していますGoogle Drive API Drive UI integrationドキュメントは特に、それはOpen URL pieceopen-withによって提供されると述べています。多大な努力を払って、検証済みを統合設定に追加しましたが、これは効果がありません。私はまだ同じを得ています。Open URLUnable to authorize this app error

4

1 に答える 1

0

Make sure that you have enabled the Drive SDK service.

The error Sorry, we were unable to authorize this app for all of the files you attempted to open. Please try again. means that you need to authorize the user. Google APIs use the OAuth 2.0 protocol for authentication and authorization. Google supports common OAuth 2.0 scenarios such as those for web server, installed, and client-side applications.

All applications follow a basic pattern when accessing a Google API using OAuth 2.0. At a high level, you follow four steps:

  • Obtain OAuth 2.0 credentials from the Google API Console.
  • Obtain an access token from the Google Authorization Server.
  • Send the access token to an API.
  • Refresh the access token, if necessary.

Note: Save refresh tokens in secure long-term storage and continue to use them as long as they remain valid. Limits apply to the number of refresh tokens that are issued per client-user combination, and per user across all clients, and these limits are different. If your application requests enough refresh tokens to go over one of the limits, older refresh tokens stop working.

于 2016-07-18T08:27:49.360 に答える