2012-05-11 29 views
1

I am trying to use this url for the event attendee information
我沒有得到與會者的全部細節,但響應包含與會者ID只有Eventbrite在線上售票API方法

<attendees> 
    <attendee> 
    <event_id>3135062055</event_id> 
    <id>110210217</id> 
</attendee> 

<attendee> 
<event_id>3135062055</event_id> 
<id>110216615</id> 
</attendee> 
</attendees> 

但在doc我可以看到完整的安息!
我需要添加什麼參數才能獲得完整的與會者信息,還需要添加哪些參數
我想一次性獲得所有與會者的信息?

請幫我達成以上。
由於提前,

文卡塔斯

回答

1

如果您授權Eventbrite's API docs訪問您的帳戶,那麼你的user-authentication credentials將自動添加到您製作使用文檔的「試試看吧」功能的任何請求。

如果您向請求添加了user_key, or Oauth2.0 access_token,那麼您應該能夠成功訪問您的attendee information

您的其他選項是配置您的活動有一個public attendee list。這將允許您的活動頁面上公開顯示的任何與會者信息可通過您共享的API URL(無需添加私人身份驗證令牌)使用。請確保您保留使用此功能的地方,以便參與者可以輕鬆公開此信息。

相關問題