Paul Hwang

Results 4 comments of Paul Hwang

> you can fetch it after a successful auth: > > ```dart > final result = await authenticator.login(refreshIfAvailable: true); > result.fold( > (failure) => throw Exception(failure.message), > (token) => token.refreshToken...

> Hi any update on this? Nope, haven't heard since but maybe looking into the codebase would answer that question. Just haven't gotten around to it yet.

Also running into this same issue, any resolution found?

Here's my exact `app.js` if needed ``` var express = require('express'); var SouthernCompanyAPI = require('southern-company-api').SouthernCompanyAPI; var app = express(); app.get('/', function (req, res) { res.send('Hello World!'); }); const username =...