Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.