skip to Main Content

Twitter API: timestamp out of Bounds when calling oauth request_token

I am trying to integrate the oauth flow in my application. I am getting a 401 when calling the oauth/request_token endpoint with this error: "message": "401 - {"errors":[{"code":135,"message":"Timestamp out of bounds."}]}" This is my authorization header: "Authorization": "OAuth oauth_callback=http%3A%2F%2F127.0.0.1%3A3000%2Ftwitter%2Foauth_callback,oauth_consumer_key=MYKEY,oauth_nonce=150255341200200,oauth_signature_method=HMAC-SHA1,oauth_timestamp=1502553412002,oauth_version=1.0,oauth_signature=d09f2f2a39e51909442ae6ca717e4aeba7066fda" I…

VIEW QUESTION

Querying Magento API in Go

I am building a service in Go that queries a Magento API. I already have the oauth credentials needed to make the request (these are persistent) and am able to successfully query the API in Postman. I am trying to…

VIEW QUESTION

I am tring to make " login with facebook" using Django. getting error – Facebook api

Making a project login with facebook. But it's showing error my localhost url -- 127.0.0.1:8000/demo/index/ My code is like this setting.py INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'social_django', 'dashboard' ] MIDDLEWARE = [ 'django.middleware.security.SecurityMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.common.CommonMiddleware', 'django.middleware.csrf.CsrfViewMiddleware',…

VIEW QUESTION
Back To Top
Search