Tag: google admin sdk

找不到404资源:使用Google Directory API的域

我跟着快速入门,尝试使用google-api-ruby-client创建用户。 我在google api控制台中设置了访问权限。 我可以使用API​​资源管理器来实现这一点。 但是,当我尝试使用ruby客户端时,我得到的资源未找到:域错误。 这是代码: def self.create_user # Initialize the client. client = Google::APIClient.new( :application_name => ‘MYAPP’, :application_version => ‘0.0.1’ ) # Authorization # Load our credentials for the service account key = Google::APIClient::KeyUtils.load_from_pkcs12(KEY_FILE, KEY_SECRET) client.authorization = Signet::OAuth2::Client.new( token_credential_uri: ‘https://accounts.google.com/o/oauth2/token’, audience: ‘https://accounts.google.com/o/oauth2/token’, scope: ‘https://www.googleapis.com/auth/admin.directory.user’, issuer: ACCOUNT_ID, signing_key: key) # Request a token for our […]