Advertisement
Guest User

Steffen

a guest
Mar 4th, 2011
306
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.85 KB | None | 0 0
  1. ...
  2. #include <afxinet.h>
  3. #include <regex>
  4.  
  5. ...
  6.  
  7. void CwebsiteloginDlg::OnBnClickedButton1()
  8. {
  9.     using namespace std::tr1;
  10.  
  11.     CInternetSession internetSession;
  12.     CString html;
  13.  
  14.     do
  15.     {
  16.         char tempRead[8192];
  17.  
  18.         // Fetch the main page (to find the sign-in page's URL)
  19.         CHttpFile* f = static_cast<CHttpFile*>(internetSession.OpenURL(
  20.             _T("http://answers.yahoo.com"),
  21.             1,
  22.             INTERNET_FLAG_TRANSFER_ASCII | INTERNET_FLAG_RELOAD | INTERNET_FLAG_DONT_CACHE));
  23.         while (UINT numRead = f->Read(tempRead, _countof(tempRead) - 1))
  24.         {
  25.             tempRead[numRead] = '\0';
  26.             html += tempRead;
  27.         }
  28.  
  29.         f->Close();
  30.         delete f;
  31.  
  32.         TCHAR* html_c = html.GetBuffer(html.GetLength());
  33.  
  34.         match_results<const TCHAR*> matches;
  35.         basic_regex<TCHAR> pattern(_T("<a href=\"([^\"]+)\">Sign In</a>"));
  36.         if (!regex_search(html_c, matches, pattern))
  37.         {
  38.             html.ReleaseBuffer();
  39.             AfxMessageBox(_T("Did not find the sign-in URL."));
  40.             break;
  41.         }
  42.  
  43.         html.ReleaseBuffer();
  44.  
  45.         // Found the sign-in URL
  46.         CString signinUrl(matches[1].first, matches[1].length());
  47.  
  48.         // Fetch the sign-in page
  49.         f = static_cast<CHttpFile*>(internetSession.OpenURL(
  50.             signinUrl,
  51.             1,
  52.             INTERNET_FLAG_TRANSFER_ASCII | INTERNET_FLAG_RELOAD | INTERNET_FLAG_DONT_CACHE));
  53.         html.Empty();
  54.         while (UINT numRead = f->Read(tempRead, _countof(tempRead) - 1))
  55.         {
  56.             tempRead[numRead] = '\0';
  57.             html += tempRead;
  58.         }
  59.  
  60.         // We're now on the sign-in page
  61.         // We need to retrieve the info need to make another POST request (to do the actual sign-in)
  62.         // If you look in the HTML document's source code, you can see the sign-in form and a field called ".challenge"
  63.         // My guess is that you will need to post that data along with the other fields
  64.         // Pay attention to the fields called "login" and "passwd"
  65.  
  66.         f->Close();
  67.         delete f;
  68.  
  69.     } while (false);
  70.  
  71.     internetSession.Close();
  72. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement