我想从 Rails 应用程序中使用 Google Cloud Datastore。任何可以使这变得容易的Ruby库?
问问题
799 次
2 回答
3
您可以使用官方的 Google API Client for Ruby:
https://github.com/google/google-api-ruby-client
# Log in
google-api oauth-2-login --client-id='...' --client-secret='...' --scope="https://www.googleapis.com/auth/datastore https://www.googleapis.com/auth/userinfo.email"
# Start an interactive API session
google-api irb
>> ds = $client.discovered_api('datastore', 'v1beta1')
>> $client.execute(ds.lookup, {'datasetId' => '...', 'keys' => [...]})
=> # returns a response from the API
于 2013-05-21T18:07:34.753 回答
0
关于将 Datastore 与 Ruby 结合使用的资源似乎很少,但此页面可能是最好的起点:
https://cloud.google.com/datastore/docs/getstarted/start_ruby/
于 2015-03-10T06:55:59.527 回答