如何在MATLAB中实现持久的HTTP会话?

时间:2015-06-16 17:29:37

标签: matlab post session-cookies urlread

我正在尝试在MATLAB中为POST方法建立持久会话。

例如,在Python中,requests库允许使用持久会话,如下所示:

s = requests.session() 
s.post('localhost/login.py', login_data) #logged in! cookies saved for future requests.
r2 = s.post('localhost/profile_data.json')

如何在MATLAB中完成?

0 个答案:

没有答案