instagram_login
Authenticate with Instagram to establish a persistent session that remains active across server restarts, enabling access to Instagram features.
Instructions
Login to an Instagram account. The session will be saved and persist across server restarts.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| username | Yes | Instagram username | |
| password | Yes | Instagram password |
Input Schema (JSON Schema)
{
"properties": {
"password": {
"description": "Instagram password",
"type": "string"
},
"username": {
"description": "Instagram username",
"type": "string"
}
},
"required": [
"username",
"password"
],
"type": "object"
}