Nearby events in the city for the Android application

The Android application should show Events in the city according to day/month/year anywhere in the world.
Is there an API to use in an Android app?
Several applications providing events such as Poynt .
I do not understand how they provide, but if anyone knows this problem, please report it.

+6
source share
3 answers

It is better that I do not buy any API for events and its huge collection, like a beggar, I would try to write several events in XML on my server, and I would analyze it in android. Display it in the android XML with the text view set.

On my server, I have to collect several events by event name , date , venue and description . Later I would display it in my Android application apps. when the user clicks the event button in my application, they will receive my data as indicated.

+1
source

Most likely, you will have to separate several categories into categories several times, I doubt that any open database with any worthy API exists that contains something close to "everywhere" or "every" event in the world ... so you should choose your battle what you really want to offer:

MUSIC

SOCIAL

I was unable to find a verified and accessible all-inclusive and open database that also offers an API, except for the following:

and you can usually look at something like: WebAPI Finder

This is a few to get you started. I really think you need to start small and grow. How do you want to start or see (audience, type of event, etc.). It will be easier to get started in certain geographic locations. Start small and grow bigger.

+6
source

You can use every API you want from the web. I think very good to start is the facebook API. A more specific part of the Facebook API event, look at this: Facebook Event API

+2
source

Source: https://habr.com/ru/post/909173/


All Articles