1

キャプチャ付きのhtmlフォームを持つWebサイトにログインできるようにしようとしています。私がやろうとしてきた方法は、ログインフォームのhtmlを取得し、ユーザーにキャプチャを表示して、テキストフィールドに入れ、フォームを送信しようとしています。

私が常に得ているエラーは無効なキーコードです。そのため、問題は最初のインスタンスで取得したキャプチャであり、2 番目のインスタンスでは無効であると推測しています...どうすればこれを行うことができますか?

Web ページは Fanfiction です。私はこれを個人的なプロジェクトとして行っており、お気に入りとフォローのリストをエクスポートできるかどうかを確認しています。

ユーザーにキャプチャを表示するためにこれを行います。

NSURL *url = [NSURL URLWithString:@"https://www.fanfiction.net"];
self.httpClient = [[AFHTTPClient alloc] initWithBaseURL:url];

[self.httpClient getPath:@"/login.php" parameters:nil success:^(AFHTTPRequestOperation *operation, id responseObject) {

    TFHpple * doc       = [[TFHpple alloc] initWithHTMLData:responseObject];
    NSArray * elements  = [doc searchWithXPathQuery:@"//img[@id='xcaptcha']"];

    TFHppleElement * element = [elements objectAtIndex:0];

    [self.captchaView setImageWithURL:[NSURL URLWithString:[element objectForKey:@"src"]]];
} failure:^(AFHTTPRequestOperation *operation, NSError *error) { }];

そして、ユーザーがキャプチャ コードをテキスト フィールドに入力して UIButton を押すと、私はこれを行います。

NSDictionary *params = [NSDictionary dictionaryWithObjectsAndKeys:
                            kFFNMail,       @"email",
                            kFFNPass,       @"password",
                            self.captchaField.text,     @"captcha",
                        nil];

NSURLRequest *postRequest = [self.httpClient multipartFormRequestWithMethod:@"POST"
                                                                  path:@"/login.php"
                                                            parameters:params
                                             constructingBodyWithBlock:^(id<AFMultipartFormData> formData) { }];

/*
// I think this is the same as the one before in this case
NSMutableURLRequest *postRequest = [self.httpClient requestWithMethod:@"POST"
                                                        path:@"/login.php"
                                                  parameters:params2];
*/

AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest:postRequest];
[operation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) {

    TFHpple * doc       = [[TFHpple alloc] initWithHTMLData:responseObject];

} failure:^(AFHTTPRequestOperation *operation, NSError *error) { }];

[operation start];

何らかの兆候がある場合、私はこれをこのようなルビースクリプトで動作させています

require 'rubygems'
require 'mechanize'
require "highline/import"

a = Mechanize.new
a.get('https://www.fanfiction.net/login.php') do |page|

  images = page.search("#xcaptcha")
  a.get(images.first.attributes["src"]).save "captcha.jpg"

  # I read the saved image,and enter the captcha code
  captcha = ask "Input captcha: "

  # Submit the login form
  my_page = page.form_with(:action => '/login.php') do |f|
    f.email     = my_mail
    f.password  = my_pass
    f.captcha   = captcha
  end.click_button

  # already logged!
  a.get('https://www.fanfiction.net/alert/story.php') do |page|
    page.links.each do |link|
      text = link.text.strip
      next unless text.length > 0
      puts text
    end
  end
end
4

1 に答える 1