|
167 | 167 | OpenShiftUrl = 'https://bypyoauth-route-bypy.a3c1.starter-us-west-1.openshiftapps.com'
|
168 | 168 | HerokuUrl = 'https://bypyoauth.herokuapp.com'
|
169 | 169 | Heroku1Url = 'https://bypyoauth1.herokuapp.com'
|
| 170 | +VercelUrl = 'https://bypyoauthsanic.now.sh/api' |
170 | 171 | GaeRedirectUrl = GaeUrl + '/auth'
|
171 | 172 | GaeRefreshUrl = GaeUrl + '/refresh'
|
172 | 173 | OpenShiftRedirectUrl = OpenShiftUrl + '/auth'
|
|
175 | 176 | HerokuRefreshUrl = HerokuUrl + '/refresh'
|
176 | 177 | Heroku1RedirectUrl = Heroku1Url + '/auth'
|
177 | 178 | Heroku1RefreshUrl = Heroku1Url + '/refresh'
|
| 179 | +VercelRedirectUrl = VercelUrl + '/auth' |
| 180 | +VercelRefreshUrl = VercelUrl + '/refresh' |
178 | 181 | AuthServerList = [
|
179 | 182 | # url, retry?, message
|
180 | 183 | (OpenShiftRedirectUrl, False, "Authorizing/refreshing with the OpenShift server ..."),
|
181 | 184 | (HerokuRedirectUrl, False, "OpenShift server failed, authorizing/refreshing with the Heroku server ..."),
|
182 | 185 | (Heroku1RedirectUrl, False, "Heroku server failed, authorizing/refreshing with the Heroku1 server ..."),
|
183 |
| - (GaeRedirectUrl, False, "Heroku1 server failed. Last resort: authorizing/refreshing with the GAE server ..."), |
| 186 | + (VercelRedirectUrl, False, "Heroku1 server failed, authorizing/refreshing with the Vercel server ..."), |
| 187 | + (GaeRedirectUrl, False, "Vercel server failed. Last resort: authorizing/refreshing with the GAE server ..."), |
184 | 188 | ]
|
185 | 189 | RefreshServerList = [
|
186 | 190 | # url, retry?, message
|
187 | 191 | (OpenShiftRefreshUrl, False, "Authorizing/refreshing with the OpenShift server ..."),
|
188 | 192 | (HerokuRefreshUrl, False, "OpenShift server failed, authorizing/refreshing with the Heroku server ..."),
|
189 | 193 | (Heroku1RefreshUrl, False, "Heroku server failed, authorizing/refreshing with the Heroku1 server ..."),
|
190 |
| - (GaeRefreshUrl, False, "Heroku1 server failed. Last resort: authorizing/refreshing with the GAE server ..."), |
| 194 | + (VercelRefreshUrl, False, "Heroku1 server failed, authorizing/refreshing with the Vercel server ..."), |
| 195 | + (GaeRefreshUrl, False, "Vercel server failed. Last resort: authorizing/refreshing with the GAE server ..."), |
191 | 196 | ]
|
192 | 197 |
|
193 | 198 | ### public static properties
|
|
0 commit comments