sovest.py 428 B

123456789101112131415
  1. from db0mb3r.services.service import Service
  2. class Sovest(Service):
  3. async def run(self):
  4. await self.get(
  5. "https://oauth.sovest.ru/oauth/authorize",
  6. data={
  7. "client_id": "dbo_web",
  8. "response_type": "urn:qiwi:oauth:response-type:confirmation-id",
  9. "username": "+" + self.formatted_phone,
  10. "recaptcha": "",
  11. },
  12. )