Skip to content

Commit 9191e78

Browse files
committed
Switch to using a new Digital Ocean app owned by info@uproxy.org.
The goal of this change is to use a redirect URI that is compatible with the chrome identity API, which is used in our mobile client, without breaking all the existing copies of uProxy. Fixes UWNetworksLab/uProxy-p2p#2408
1 parent 45b55df commit 9191e78

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/cloud/digitalocean/provisioner.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const ERR_CODES: { [k: string]: string; } = {
4343
};
4444

4545
const REDIRECT_URIS: [string] = [
46-
'https://pjpcdnccaekokkkeheolmpkfifcbibnj.chromiumapp.org'
46+
'https://fmdppkkepalnkeommjadgbhiohihdhii.chromiumapp.org',
4747
// 'http://localhost:10101'
4848
];
4949

@@ -257,7 +257,7 @@ class Provisioner {
257257
this.sendStatus_('OAUTH_INIT');
258258
oauth.initiateOAuth(REDIRECT_URIS).then((obj: any) => {
259259
var url = 'https://cloud.digitalocean.com/v1/oauth/authorize?' +
260-
'client_id=c16837b5448cd6cf2582d2c2f767cfb7d11844ec395a91b43f26ca72513416c8&' +
260+
'client_id=41f77ea7aa94311a2337027eb238591db9e98c6e2c1067b3b2c7c3420901703f&' +
261261
'response_type=token&' +
262262
'redirect_uri=' + encodeURIComponent(obj.redirect) + '&' +
263263
'state=' + encodeURIComponent(obj.state) + '&' +

0 commit comments

Comments
 (0)