有这个网站,例如http://website.com你可以喜欢那里的东西,例如这样的链接:http ://website.com/3020/hype。您必须转到该链接才能获得喜欢的文章 (3020)。只有登录后才能点赞。
我有这个:
HttpClient client = new DefaultHttpClient();
String getURL = "http://website.com/3020/hype/";
HttpGet get = new HttpGet(getURL);
HttpResponse responseGet = client.execute(get, cookieStuff);
其中 cookieStuff 是我从登录中获得的 cookie 字符串。
这有效,但需要很长时间。还有其他选择吗?