I'm using the ruby-box gem to connect to box.com, where it states to use this code to get an access token:
session = RubyBox::Session.new({
client_id: $boxClientID,
client_secret: $boxClientSecret
})
authorize_url = session.authorize_url('https://redirect-url-in-app-settings')
@token = session.get_access_token('code-returned-to-redirect_url')
The problem is that I don't have a url to re-direct to, and I'm also not using a GUI, so I can't get the code from there. What do I do?
Ben here, I'm one of the developers of the ruby-box Gem. Here's what you can do:
You only need to get the access_token and refresh_token once for a user.