Jump to content

Julius

Members
  • Số lượng nội dung

    4
  • Đã tham gia

  • Lần ghé thăm cuối

  • Days Won

    1

Cộng đồng

1 Neutral
  1. Cái này do policy của site á :3 chứ các site khác vẫn bth. Nó check bằng akamai là bot hoặc người bằng cookies. Fake không thể được :(
  2. Mọi chi tiết tại đây nha mọi người. https://chem.vc/home/
  3. Cho em hỏi tại sao trang này request post login chỉ đc 3-4 lần. Lần 5 thì bị 403 ạ :( em đã thử change IP vẫn bị thế luôn. import json import requests response = requests.Session() url = 'https://www.saksfifthavenue.com/account/login?_k=%2Faccount%2Fsummary' while True: try: headers = { 'sec-fetch-mode': 'cors', 'origin': 'https://www.saksfifthavenue.com', 'accept-encoding': 'gzip, deflate', 'accept-language': 'en-US', 'user-agent': 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36', 'content-type': 'application/json;charset=UTF-8', 'accept': 'application/json, text/plain, */*', 'referer': url, 'authority': 'www.saksfifthavenue.com', 'sec-fetch-site': 'same-origin', 'dnt': '1', } data = {"username":"demo@gmail.com,"password":"Thisisatest"} login = response.post( 'https://www.saksfifthavenue.com/v1/account-service/accounts/sign-in', headers=headers, data=json.dumps(data)).content loginCheck = login.decode() print(loginCheck) if "Sorry, this does not match our records. Please try again." in loginCheck: print('Login failed!!!') break elif """Your Account""" in loginCheck: print('Login success!!!') else: print('403 Error. Login Failed') break except: pass
×
×
  • Create New...