In Django URL patterns, what's the proper way to take this URL:
And create variables:
access_token = 12345678910|b1827b912847b81938747b91849-193867192305817|EKWOGJhcinWIjWij8174-NgjRojb
expires_in = 0
I've been trying to get this to work, but to no avail...
url(r'^fb/(?P([^&]+)(?:&expires=(.*))?/?$, 'app.views.test_url', name="test_url"),