質問編集履歴

1

追記

2021/04/04 08:21

投稿

solt0723
solt0723

スコア67

test CHANGED
File without changes
test CHANGED
@@ -28,4 +28,54 @@
28
28
 
29
29
  ### Zapierの設定内容
30
30
 
31
- Credentialの取得設定
31
+ **認証情報**
32
+
33
+ - Client IDとClient Secretを設定
34
+
35
+
36
+
37
+ **Credential取得のリクエスト設定**
38
+
39
+ - 次のGETリクエスト
40
+
41
+ - 見やすくするために改行を入れています
42
+
43
+
44
+
45
+ ```
46
+
47
+ https://accounts.google.com/o/oauth2/auth
48
+
49
+ ?client_id=XXX.apps.googleusercontent.com
50
+
51
+ &redirect_uri=https://zapier.com/dashboard/auth/oauth/return/App130684CLIAPI/
52
+
53
+ &scope=https://www.googleapis.com/auth/cloud-platform
54
+
55
+ &response_type=code&approval_prompt=force&access_type=offline
56
+
57
+ ```
58
+
59
+
60
+
61
+ token取得のリクエスト設定
62
+
63
+ - 次のGETリクエスト
64
+
65
+
66
+
67
+ ```
68
+
69
+ https://accounts.google.com/o/oauth2/token
70
+
71
+ ```
72
+
73
+
74
+
75
+ ### 調査、確認した内容
76
+
77
+ - Zapierの公式ドキュメントの[OAuth2設定箇所](https://platform.zapier.com/docs/oauth?from_url=https%3A%2F%2Fdeveloper.zapier.com%2Fapp%2F130684%2Fversion%2F1.0.0%2Ftriggers#form)とGoogleの[ドキュメント](https://cloud.google.com/docs/authentication/end-user?hl=ja)を一通り確認したのですが分からず。。
78
+
79
+ - エラーメッセージから、Googleのアカウントを選択するパラメーターをどこかで設定する必要があるのかと思っているのですが、Google側の仕様もZapierでの設定方法も双方のドキュメントから読み取れませんでした
80
+
81
+ - 追加で情報必要でしたら記載するので、どなたかお力お貸しください。。