Quick Start
1. Send a login request
curl --request POST \
--url https://mysiga.laravieira.me/login \
--header 'Content-Type: multipart/form-data' \
--form cpf=12345678901 \
--form password=mysiga123$cpf = '12345678901';
$password = 'mysiga123';
$headers = array("Content-Type: application/x-www-form-urlencoded");
$data = "cpf=$cpf&password=$password";
$curl = curl_init("https://mysiga.laravieira.me/login");
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
$response = curl_exec($curl);
curl_close($curl);import requests
from requests.structures import CaseInsensitiveDict
url = "https://mysiga.laravieira.me/login"
headers = CaseInsensitiveDict()
headers["Content-Type"] = "application/x-www-form-urlencoded"
data = "cpf=12345678901&password=mysiga123"
response = requests.post(url, headers=headers, data=data){
"server": "https:\/\/sigam1.ufjf.br\/index.php",
"siga": "cltrava6630eo6fln4ao621vn2",
"client": "1e1a3a2698a6ac2fb0bbe8867f713e09",
"logged": true
}2. Send a registration file request
Extra step
Next steps
Last updated