
Security News
CISA’s 2025 SBOM Guidance Adds Hashes, Licenses, Tool Metadata, and Context
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.
Ruby wrapper for Yandex Direct API V5.
Add this line to your application's Gemfile:
gem 'direct-api-v5'
And then execute:
$ bundle
Or install it yourself as:
$ gem install direct-api-v5
Direct::API::V5.load_settings('config/yandex_direct_api.yml')
production:
host: api.direct.yandex.com
auth_token: token_string
client_login: login_string
language: ru
development:
host: api-sandbox.direct.yandex.com
auth_token: token_string
client_login: login_string
language: ru
Direct::API::V5.configure do |config|
config.host = 'api.direct.yandex.com'
config.auth_token = 'token_string'
config.client_login = 'login_string'
config.language = 'ru'
end
api = Direct::API::V5.client
You can set client login (if advertising agency)
api = Direct::API::V5.client(client_login: 'login_string')
Also you can overwrite any default settings:
api = Direct::API::V5.client(host: 'api.direct.yandex.com', auth_token: 'token')
Base structure:
api.service_name.method(params)
For example:
response = api.campaigns.get(
fields: [:id, :name],
criteria: { states: %w(ON) },
page: { limit: 100, offset: 200 }
)
response.error?
# => false
response.result
# =>
# {
# Campaigns: [
# { Id: 1, Name: "Campaign 1" },
# ...
# ]
# }
response.request_id
# => 123456
response.units.spent
# => 10
response.units.available
# => 1000
response.units.daily_limit
# => 2000
response.units.raw
# => 10/1000/2000
If API return error:
response.error?
# => true
response.error.code
# => 54
response.error.message
# => "No rights"
response.error.details
# => "No rights to indicated client"
response.error.to_h
# =>
# {
# code: 54,
# message: "No rights",
# details: "No rights to indicated client"
# }
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)FAQs
Unknown package
We found that direct-api-v5 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.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.
Security News
A clarification on our recent research investigating 60 malicious Ruby gems.
Security News
ESLint now supports parallel linting with a new --concurrency flag, delivering major speed gains and closing a 10-year-old feature request.