Eventbrite API - Get Events with Classic ASP

jin007

New Member
I'm restricted to classic ASP and trying to use the following code to get a list of events from a user on Eventbrite:\[code\]Dim reqSet req = Server.CreateObject("MSXML2.ServerXMLHTTP")response.ContentType="text/xml"req.open "GET", "https://www.eventbrite.com/xml/user_list_events?app_key=XXXX&user_key=XXXX&user=XXXX", Falsereq.sendResponse.Write(req.responseText)\[/code\]This has worked with other APIs but can't get it to work with Eventbrite. When I test the URL, it works in RESTClient and in my browser. Am I missing something? Any help is greatly apprciated!Thanks!John
 
Back
Top