- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在尝试使用 way2sms 发送免费短信。我发现这个链接似乎适用于 python 3:https://github.com/shubhamc183/way2sms
我已将此文件另存为 way2sms.py:
import requests
from bs4 import BeautifulSoup
class sms:
def __init__(self,username,password):
'''
Takes username and password as parameters for constructors
and try to log in
'''
self.url='http://site24.way2sms.com/Login1.action?'
self.cred={'username': username, 'password': password}
self.s=requests.Session() # Session because we want to maintain the cookies
'''
changing s.headers['User-Agent'] to spoof that python is requesting
'''
self.s.headers['User-Agent']="Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:50.0) Gecko/20100101 Firefox/50.0"
self.q=self.s.post(self.url,data=self.cred)
self.loggedIn=False # a variable of knowing whether logged in or not
if "http://site24.way2sms.com/main.action" in self.q.url: # http status 200 == OK
print("Successfully logged in..!")
self.loggedIn=True
else:
print("Can't login, once check credential..!")
self.loggedIn=False
self.jsid=self.s.cookies.get_dict()['JSESSIONID'][4:] # JSID is the main KEY as JSID are produced every time a session satrts
def msgSentToday(self):
'''
Returns number of SMS sent today as there is a limit of 100 messages everyday..!
'''
if self.loggedIn == False:
print("Can't perform since NOT logged in..!")
return -1
self.msg_left_url='http://site24.way2sms.com/sentSMS?Token='+self.jsid
self.q=self.s.get(self.msg_left_url)
self.soup=BeautifulSoup(self.q.text,'html.parser') #we want the number of messages sent which is present in the
self.t=self.soup.find("div",{"class":"hed"}).h2.text # div element with class "hed" -> h2
self.sent=0
for self.i in self.t:
if self.i.isdecimal():
self.sent=10*self.sent+int(self.i)
return self.sent
def send(self,mobile_no,msg):
'''
Sends the message to the given mobile number
'''
if self.loggedIn == False:
print("Can't perform since NOT logged in..!")
return False
if len(msg)>139 or len(mobile_no)!=10 or not mobile_no.isdecimal(): #checks whether the given message is of length more than 139
return False #or the mobile_no is valid
self.payload={'ssaction':'ss',
'Token':self.jsid, #inorder to visualize how I came to these payload,
'mobile':mobile_no, #must see the NETWORK section in Inspect Element
'message':msg, #while messagin someone from your browser
'msgLen':'129'
}
self.msg_url='http://site24.way2sms.com/smstoss.action'
self.q=self.s.post(self.msg_url,data=self.payload)
if self.q.status_code==200:
return True
else:
return False
def sendLater(self, mobile_no, msg, date, time): #Function for future SMS feature.
#date must be in dd/mm/yyyy format
#time must be in 24hr format. For ex: 18:05
if self.loggedIn == False:
print("Can't perform since NOT logged in..!")
return False
if len(msg)>139 or len(mobile_no)!=10 or not mobile_no.isdecimal():
return False
dateparts = date.split('/') #These steps to check for valid date and time and formatting
timeparts = time.split(':')
if int(dateparts[0])<1 or int(dateparts[0])>32 or int(dateparts[1])>12 or int(dateparts[1])<1 or int(dateparts[2])<2017 or int(timeparts[0])<0 or int(timeparts[0])>23 or int(timeparts[1])>59 or int(timeparts[1])<0:
return False
date = dateparts[0].zfill(2) + "/" + dateparts[1].zfill(2) + "/" + dateparts[2]
time = timeparts[0].zfill(2) + ":" + timeparts[1].zfill(2)
self.payload={'Token':self.jsid,
'mobile':mobile_no,
'sdate':date,
'stime':time,
'message':msg,
'msgLen':'129'
}
self.msg_url='http://site24.way2sms.com/schedulesms.action'
self.q=self.s.post(self.msg_url, data=self.payload)
if self.q.status_code==200:
return True
else:
return False
def logout(self):
self.s.get('http://site24.way2sms.com/entry?ec=0080&id=dwks')
self.s.close() # close the Session
self.loggedIn=False
并将另一个文件另存为 smsing.py:
import way2sms
q=way2sms.sms(1234567890,'password') #username = 1234567890
q.send('0987654321','hello') #receiver ph no.:0987654321, message=hello
n=q.msgSentToday()
q.logout()
-我尝试将用户名作为字符串传递,或者以其他方式传递。如果未以字符串形式给出密码,则会显示错误。我的用户名和密码都是正确的。当我执行 smsing.py... 显示:
>>>Can't login, once check credential..!
Can't perform since NOT logged in..!
Can't perform since NOT logged in..!
有了如此简单的代码,我认为这会很容易。但我无法找到我哪里出错了。是因为我用的是Windows 7吗?有人可以帮我吗?
最佳答案
要使用way2sms
帐户发送短信
,您可以使用以下代码片段。
在此之前,您需要从 here 创建一个 API Key
import requests
url = "https://smsapi.engineeringtgr.com/send/"
params = dict(
Mobile='login username',
Password='login password',
Key='generated from above sms api',
Message='Your message Here',
To='recipient')
resp = requests.get(url, params)
print(resp, resp.text)
注意:每天的短信数量限制约为 20 条
关于python - 使用 Python 3 通过 way2sms 发送短信,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50151490/
我是发送 SMS 的新手,我需要构建一个不需要与任何 SMS 提供商或移动运营商集成的 SMS 网关。但是,我不知道这是否可能。 有人推荐了两个他们声称能够做到这一点的库。这些库基于 SMPP。以下是
我遇到了必须做出的选择。 请告知Kannel和Jasmin SMS之间SMS平台的最佳选择是什么。谁知道任何利弊? 最佳答案 作为python程序员,我对Jasmin感到更自在。它工作得很好,对我来说
通过 Clickatell API 发送英语和西类牙语消息时,SMS 消息的最大长度是多少? 英语和西类牙语的消息长度有区别吗,因为西类牙语可能包含 Unicode 字符? 最佳答案 来自 SMS w
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 11 年前。 Improve thi
Twilio SMS 消息在英语中运行良好,但法语口音不起作用。重音字符替换为 ?符号。我该怎么办? 最佳答案 我发现将正文转换为 UTF-8 可以解决这个问题,而且价格实际上降低了一半。区别在于我需
我注意到我从公司收到的某些 SMS 消息带有“发件人姓名”。例如。就在今天,我收到了一条我以前从未使用过的号码(不是我的联系人)发来的短信,但是发件人的名字显示为“Adobe”。我也从其他公司得到这个
是否可以使用您的个人移动帐户以编程方式发送 SMS 消息? 是否有任何移动网络(位置目前不重要)允许订阅者通过网关 api 发送短信? 最佳答案 移动运营商为此目的使用短消息对等协议(protocol
我正在研究通过 API 调用同时提供 SMS 和语音邮件服务的公司。我希望能够通过短信和语音邮件联系用户(其中大多数是美国用户)。这个想法是,我们的网络服务器将连接到 SMS/语音邮件提供商的服务
我需要开发一个 Android 应用程序来接收来自特定发件人的短信,当收到短信时,应用程序必须被激活并获取短信附带的所有值,请给我答案? 最佳答案 您可以使用 BroadcastReciver 来阅读
我使用 twilio 发送短信,但在我尝试创建的消息中,它是一个很长的 url,因此不会发送 160 个字符,因此 twilio 切断了消息并且 url 不起作用。 如果我使用自动 twilio Sh
我正在处理 SMS 和 PDU,并创建串联消息以通过 GSM 调制解调器 (Cinterion MC35i) 发送,但是当我发送串联消息时,它从未出现在另一端。这是与调制解调器的通信记录: at OK
SMS 草稿的 native 内容 URI 是什么? 最佳答案 您可以通过不同的打开方式打开每个短信部分。 收件箱 = "content://sms/inbox" 失败 = "content://sm
我正在尝试使用 Twilio Java API 发送消息。使用试用帐户,我看到我的消息中添加了前缀。 可以删除/修改这个前缀“从您的 Twilio 试用帐户发送”吗? 最佳答案 Twilio 开发人员
2G 和 3G 已经在少数国家停用,其他国家也将很快停用。 LTE 模块的 VoLTE 功能对于能够通过 4G 进行调用而无需 2G/3G 回退是必需的。 native SMS 可以通过 2G/3G
我使用的是 Android 1.6。我想查询“content://sms/inbox”。如何实现? 最佳答案 无论是否是 SDK 的一部分,除了使用 content://sms/inbox 之外,我看
2G 和 3G 已经在少数国家停用,其他国家也将很快停用。 LTE 模块的 VoLTE 功能对于能够通过 4G 进行调用而无需 2G/3G 回退是必需的。 native SMS 可以通过 2G/3G
我有两个问题。 我正在为我尝试在 Twilio SMS 工具中为最终用户和管理人员编写代码的客户创建网站。我已经构建了请求和响应工具,所以我在功能上都设置好了。所以问题是: A.我可以向任何电话号码发
我正在尝试获取短信对话列表和所有短信,就像这样的结构:(这是一个对话结构)。 [ "names":[ "Antoine Duval", "Mike Tyson"
我有 20 个联系人存储在数组中,我想只检索这些联系人的短信,然后相应地处理它们? 这可能吗?我的意思是我可以编写 where 子句来存储查询中的联系人,然后检索如果可以的话如何去做? 还是应该使用
首先,我使用模拟器进行测试。我想使用消息文本(作为参数发送)打开默认 SMS 应用程序,并允许用户从那里(和内置应用程序)进行控制。我使用这段代码: Button btnSMS = (Button)
我是一名优秀的程序员,十分优秀!