qiwi.py 375 B

123456789
  1. from db0mb3r.services.service import Service
  2. class Qiwi(Service):
  3. async def run(self):
  4. await self.post(
  5. "https://mobile-api.qiwi.com/oauth/authorize",
  6. data={"response_type": "urn:qiwi:oauth:response-type:confirmation-id", "username": self.formatted_phone, "client_id": "android-qw", "client_secret": "zAm4FKq9UnSe7id"},
  7. )