|a b |
a := ZnClient new.
a get: 'http://cloud-storage.com/login'.
a
formAt: 'username' put: 'jom';
formAt: 'password' put: 'mypass';
post;
get: 'http://cloud-storage.com/my-file'.
"Here I want to refresh the session for every 60sec and"
"to checking for newer data"
b := a maxNumberOfRedirects:60
Transcript show: b; cr.
我想实现一种方法,可以每 60 秒刷新一次 ZnClient 会话,以检查我登录的服务器上的更新数据。我尝试了pharo的重定向方法,但它似乎不起作用。或者说它没有显示任何东西。任何想法?