2017-06-22 124 views
0

這是我第一次使用Google API,並且在我自己的Google日曆中添加一個存根事件時從我的本地Rails應用程序中找到了總阻礙。Google日曆添加事件「插入」方法不起作用

我試着按照this演練,但它有許多我不需要的操作。我只希望能夠創建事件,並能夠在網上看到它的谷歌日曆。

當嘗試使用教程完全相同的代碼後,我得到有關missing keys [calendar_id]爲這最後的現場不明原因的錯誤:

service.insert_event(params[:calendar_id], event)

於是就使這項工作放棄後,我試圖使下面發現here,特別是最後一部分的另一個解決方案的實際POST操作,

@set_event = client.execute(:api_method => service.events.insert, 
        :parameters => {'calendarId' => current_user.email, 'sendNotifications' => true}, 
        :body => JSON.dump(@event), 
        :headers => {'Content-Type' => 'application/json'}) 

然而,Rails的告訴我,eventsservice.events.insert是一個未定義的方法。

我非常沮喪,因爲大部分時間都在嘗試修復它。誓言重定向和認證工作,但我一直沒能創建一個事件。這裏是我的代碼:

###Controller 
class Api::V2::CalendarsController < Api::V2::BaseController 
require 'signet/oauth_2/client' 
require 'google/apis/calendar_v3' 
require 'googleauth' 

def redirect 
client = Signet::OAuth2::Client.new({ 
    client_id: Figaro.env.google_client_id, 
    client_secret: Figaro.env.google_client_secret, 
    authorization_uri: 'https://accounts.google.com/o/oauth2/auth', 
    scope: Google::Apis::CalendarV3::AUTH_CALENDAR, 
    redirect_uri: 'http://localhost:3000/' 
}) 
redirect_to client.authorization_uri.to_s 
end 

def callback 
client = Signet::OAuth2::Client.new({ 
    client_id: Figaro.env.google_client_id, 
    client_secret: Figaro.env.google_client_secret, 
    token_credential_uri: 'https://accounts.google.com/o/oauth2/token', 
    redirect_uri: callback_url, 
    code: params[:code] 
}) 

response = client.fetch_access_token! 

session[:authorization] = response 

redirect_to 'http://localhost:3000' 
end 

def new_event 

client = Signet::OAuth2::Client.new({ 
    client_id: Figaro.env.google_client_id, 
    client_secret: Figaro.env.google_client_secret, 
    token_credential_uri: 'https://accounts.google.com/o/oauth2/token' 
}) 

client.update!(session[:authorization]) 

service = Google::Apis::CalendarV3::CalendarService.new 
service.authorization = client 

today = Date.today 

event = Google::Apis::CalendarV3::Event.new({ 
    start: Google::Apis::CalendarV3::EventDateTime.new(date: today), 
    end: Google::Apis::CalendarV3::EventDateTime.new(date: today + 1), 
    summary: 'New event!' 
}) 

begin 
    event = service.insert_event('primary', event) 
rescue Google::Apis::AuthorizationError => exception 
    response = client.refresh! 

    session[:authorization] = session[:authorization].merge(response) 

    retry 
end 
end 

###Route 
namespace :api, defaults: { format: :json } do 
namespace :v2 do 
    get '/redirect', to: 'calendars#redirect', as: 'redirect' 
    get '/callback', to: 'calendars#callback', as: 'callback' 
    post '/events/new', to: 'calendars#new_event', as: 'new_event' 
end 
end 

###View snippet 
<%= form_tag api_v2_new_event_path do %> 
    <%= submit_tag 'Add event' %> 
<% end %> 

我會非常感激,如果有人可以點我什麼是真正錯誤的兩種變體或是否有更好的方式來實際創建並提交事件。謝謝!

更新:在遵循@ SergeyBokolov的建議之後,我更新了代碼。不過,我現在嘗試提交時,得到這樣的:

Authorization failed. Server message: 
{ 
"error" : "invalid_request", 
"error_description" : "Required parameter is missing: grant_type" 
} 

回答

0
service.insert_event('primary', event) 

你有missing keys [calendar_id]因爲params[:calendar_id]是空白。從你的第二個鏈接

教程看起來過時的。

插入事件的官方示例可用here

已更新: 您的新錯誤與授權有關。我建議你使用下一個代碼進行授權:

service.authorization = Google::APIClient::ClientSecrets.new(
     {'web' => {'access_token' => YOUR_TOKEN, 
        'refresh_token' => YOUR_REFRESH_TOKEN, 
        'client_id' => YOUR_GOOGLE_APP_ID, 
        'client_secret' => YOUR_GOOGLE_APP_SECRET}} 
    ).to_authorization 
+0

謝謝你指出。我已經更新了代碼的最後一部分,但現在我得到一個新的,有些奇怪的錯誤。此外,這將是巨大的,如果谷歌可以鏈接Github上頁面上他們的官方文檔,因爲我從來沒有發現它試圖找到一個解決方案 – Doge

+0

這種寶石是那些你需要尋找到代碼中發現了什麼庫之一。新的錯誤是授權錯誤,我會更新一下答案 –

+0

謝謝您的意見!但是,我在哪裏同時獲取授權的訪問權限和刷新令牌?我可以簡單地在它們上調用會話[「授權」]變量嗎? – Doge

相關問題