
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
instagram-apis
Advanced tools
npm install instagram-apis
const lib = require("instagram-apis");
const client = new lib();
(async () => {
await client.init({
username: "USERNAME",
password: "PASSWORD",
// saveCookie: true
});
})(); // saveCookie parameter used to save your cookie in session.json file;
const lib = require("instagram-apis");
const client = new lib();
(async () => {
await client.init({
cookie: "COOKIE",
});
})();
Function | Parameters | Do What ? | Example |
---|---|---|---|
getUsernameInfo() | username [required] | Returns account information | await client.getUsernameInfo("afph") |
getInfoByUserId() | UserID [required] | Returns account information | await client.getUsernameInfo("1443437479") |
followByUsername() | username [required] | To follow an account | await client.followByUsername("afph") |
followByUserId() | UserID [required] | To follow an account | await client.followByUserId("1443437479") |
blockByUsername() | username [required] | To block an account | await client.blockByUsername("afph") |
blockByUserId() | UserID [required] | To block an account | await client.blockByUserId("1443437479") |
unfollowByUsername() | username [required] | To unfollow an account | await client.unfollowByUsername("afph") |
unfollowByUserId() | UserID [required] | To unfollow an account | await client.unfollowByUserId("1443437479") |
getAccountStoriesDataByUserId() | UserID [required] | To get all stories data of account | await client.getAccountStoriesDataByUserId("1443437479") |
changeUsername() | username [required] | To change account username to new username passed in parameters | await client.changeUsername("newusername") |
changeBiography() | biography [required] | To change account biography to new biography passed in parameters | await client.changeBiography("NEW_BIO") |
changeFirstName() | firstName [required] | To change account FirstName to new biography passed in parameters | await client.changeFirstName("NEW_FIRST_NAME") |
Function | Parameters | Do What ? | Example |
---|---|---|---|
sendMessageToUserIds() | { userIds [required] , message [required] } | Send Messages To account with User IDs | await client.sendMessageToUserIds({userIds: ["1443437479"], message: "MESSAGE_TEXT"}) |
getThreadIdByUserId() | userid [required] | Returns the thread id of chat that between logged account and other account | await client.getThreadIdByUserId("1443437479") |
getChatMessages() | { thread_id [required], cursor } | Returns last 20 messages in specific chat with cursor | - await client.getChatMessages({thread_id: "THREAD_ID"}) - await await client.getChatMessages({thread_id: "THREAD_ID", cursor: "CURSOR"}) |
getChats() | cursor | Returns last 20 chats with or without cursor, also last 20 messages of each chat | - await client.getChats() - await client.getChats("THE_CURSOR") |
getLastMessagingRequests() | Returns last pending chats in request messages | await client.getLastMessagingRequests() | |
acceptMessageRequest() | thread_id [required] | Accept message request with specific thread ID | await client.acceptMessageRequest("THREAD_ID") |
restirectChatByUserId() | UserID [required] | restirect specific account with user ID | await client.restirectChatByUserId("1443437479") |
unRestirectChatByUserId() | UserID [required] | unrestirect specific account with user ID | await client.unRestirectChatByUserId("1443437479") |
deleteChat() | thread_id [required] | Delete a specific chat with thread ID | await client.deleteChat("THREAD_ID") |
unSendMessage() | { thread_id [required], item_id [required] } | Unsend (Delete) a specific message in specific chat using thread ID and item ID | await client.unSendMessage({thread_id: "THREAD_ID", item_id: "ITEM_ID"}) |
sendPhotoToChat() | { url [required], thread_id [required] } | Send photo from URL to chat using thread ID and image[jpg] URL. | await client.sendPhotoToChat({url: "https://i.imgur.com/H43LKYL.png", thread_id: "THREAD_ID"}) |
sendVideoToChat() | { url [required], thread_id [required] } | Send video from URL to chat using thread ID and video[mp4] URL. | await client.sendVideoToChat({url: "https://i.imgur.com/3nn5VcM.mp4", thread_id: "THREAD_ID"}) |
Media ID is an identifier for images, photos, posts, reels, stories and other. It used in API's .
Function | Parameters | Do What ? | Example |
---|---|---|---|
getMediaIdFromURL() | URL [required] | Returns the media ID of post or reels | await client.getMediaIdFromURL("https://www.instagram.com/p/CfJn1AHAFdA/") |
getMediaInfoFromMediaId() | media_id [required] | Returns the media information | await client.getMediaInfoFromMediaId("MEDIA_ID") |
getMediaInfoFromURL() | URL [required] | Returns the media information | await client.getMediaInfoFromURL("https://www.instagram.com/p/CfJn1AHAFdA/") |
likePostByMediaId() | media_id [required] | Like a post with media ID | await client.likePostByMediaId("THE_MEDIA_ID") |
unLikePostByMediaId() | media_id [required] | Unlike a post with media ID | await client.unLikePostByMediaId("THE_MEDIA_ID") |
deletePost() | media_id [required] | Delete a post with speific media ID | await client.deletePost("THE_MEDIA_ID") |
getPostComments() | media_id [required] | Returns post comments with speific media ID | await client.getPostComments("THE_MEDIA_ID") |
Function | Parameters | Do What ? | Example |
---|---|---|---|
getLastFollowRequests | Returns last follow requests | await client.getLastFollowRequests() | |
acceeptFollowRequest() | UserID [required] | Accepts follow request | await client.acceeptFollowRequest("USER_ID") |
FAQs
Insatgram library filled with useful Instagram API's
We found that instagram-apis demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.