SteemConnect: Deprecation notice for "v2" subdomain

Words
91
Reading
1 min
Listen
Play
8y

Artboard.png

Hey developers,

We would like to warn you that the subdomain v2 of steemconnect.com will become deprecated by September 15th. Make sure you update your application to use https://steemconnect.com instead of https://v2.steemconnect.com before this date. These 2 endpoints are actually pointing to the same app and same server, they are exactly the same, the subdomain v2 were used when there was the version 1 running on the main domain months ago.

Here is the change you have to do concretely:

Before:

var api = sc2.Initialize({
  baseURL: 'https://v2.steemconnect.com',
  app: 'steemiscool.app',
  callbackURL: 'https://steemiscool.com'
});

After:

var api = sc2.Initialize({
  baseURL: 'https://steemconnect.com', 
  app: 'steemiscool.app',
  callbackURL: 'https://steemiscool.com'
});

If you omit the baseURL parameter it will work too:

var api = sc2.Initialize({
  app: 'steemiscool.app',
  callbackURL: 'https://steemiscool.com'
});

Best,

Fabien

SteemConnect: Deprecation notice for "v2" subdomain | Ecency