skip to Main Content

What is error code 35, returned by the telegram.org server – Telegram API

My client often receives the following message container from the telegram server, seemingly at random: {'MessageContainer': [{'msg': {u'bad_msg_notification': {u'bad_msg_seqno': 4, u'bad_msg_id': 6330589643093583872L, u'error_code': 35}}, 'seqno': 4, 'msg_id': 6330589645303624705L}, {'msg': {u'msgs_ack': {u'msg_ids': [6330589643093583872L]}}, 'seqno': 4, 'msg_id': 6330589645303639041L}]}) You may notice: 'error…

VIEW QUESTION

Facebook api – Account Kit: Error verifying the token in the 'access_token'

I'm trying to retrieve an access token for an authentication code. I'm using the following format: GET https://graph.accountkit.com/v1.0/access_token?grant_type=authorization_code&code=AUTH_CODE&access_token=AA|APP_ID|APP_SECRET where AUTH_CODE, APP_ID, and APP_SECRET are their respective values. Here is the python I use to assemble this URL: url = 'https://graph.accountkit.com/v1.0/access_token?grant_type=authorization_code&code='…

VIEW QUESTION

How to decode a text file – Twitter API

I have this code here and it work perfectly. # encoding=utf8 #Import the necessary methods from tweepy library import sys from tweepy import OAuthHandler from tweepy import Stream from tweepy.streaming import StreamListener reload(sys) sys.setdefaultencoding('utf8') #Variables that contains the user credentials…

VIEW QUESTION
Back To Top
Search