SteemConnect: Deprecation notice for "v2" subdomain

in steemconnect •  6 years ago 

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

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!
Sort Order:  

Just released 0.0.4 on steemconnect-python-client to update the default urls.

Users of the library may update via pip:

pip install steemconnect --upgrade

Great! That was fast :)

We rely on steemconnect for our membership model! Much thanks for the update!! Otherwise I wouldn't notice it

Great! The v2 was so confusing...

@katerinaramm : This may be of interest to you.

Seems like omitting baseURL parameter after v2 link depreciation doesn't work. (still calling https://v2.steemconnect.com)

Thanks for the update. This should be made widely known!

Cheers.

Thanks you @fabien
informations

Thanks ;)

  ·  6 years ago (edited)

Thank you for announcing. I reteemed this article.