Created
October 4, 2021 04:39
-
-
Save ans-4175/758a338e2f7a9f02f278ef88e67d587e to your computer and use it in GitHub Desktop.
Talenta ClockIn
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
wget --no-check-certificate --quiet \ | |
--method POST \ | |
--timeout=0 \ | |
--server-response \ | |
--header 'Cookie: PHPSESSID=<value_from_web_cookies>' \ | |
--body-data 'latitude=YGLhZGpjZmL1AwLlAGD2Amx1&longitude=ZGN2YwtlAQRkAmp4ZGxlAQLk&status=checkin&description=hi from Indonesia' \ | |
'https://hr.talenta.co/api/web/live-attendance/request' 2>&1 | grep "HTTP/1.1" | |
# run with `sh talenta-in.sh` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment