Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
github.com/justblender/vk-api
vk-api is a simple Golang package that provides tools to interact with VK API. Supports authentication using login and password or by passing an access token right into the app, as well as long polling. More features yet to come, probably gonna turn this into a full SDK.
go get -t github.com/justblender/vk-api
package main
import (
"os"
"github.com/justblender/vk-api"
)
func main() {
// Use either one of three types: NoAuthentication, DirectAuthentication and ClientCredentialsFlow
client, err := vk_api.NewClient(vk_api.DirectAuthentication{
Username: os.Getenv("username"),
Password: os.Getenv("password"),
Device: vk_api.ANDROID,
})
if err != nil {
panic("Couldn't authenticate, sad!")
}
parameters := vk_api.RequestParameters{
"user_id": 1,
"message": "Pasha, bring back the wall!",
}
if _, err = client.Request("messages.send", parameters); err != nil {
panic("Pasha couldn't bring back the wall")
}
}
// don't forget about the previously created Client!..
longPoll, err := client.NewLongPoll()
if err != nil {
panic("Couldn't create a new LongPoll")
}
for {
messages, err := longPoll.Poll()
if err != nil {
panic("Some bad error occurred")
}
for _, message := range messages {
if message.HasFlag(vk_api.FLAG_CHAT) {
fmt.Printf("New message from chat %d: %s\n", message.PeerID, message.Text)
}
}
}
FAQs
Unknown package
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.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.