You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
414 B
13 lines
414 B
#!/bin/sh
|
|
|
|
for i in $(seq 1 100);
|
|
do
|
|
curl --location --request POST 'http://{address_of_ingress}/api/v1/registration' \
|
|
--header 'x-device: android' \
|
|
--header 'x-checksum: b25seWZvcm9iaXVzZXJzhY0e357DGJYW5kcm9pZA==' \
|
|
--header '1673858714;' \
|
|
--header 'Content-Type: application/x-www-form-urlencoded' \
|
|
--data-urlencode uid=""$1"" \
|
|
--data-urlencode email=""$1@mail.ru""
|
|
echo ""
|
|
done
|
|
|