Android 应用程序应显示世界各地日/月/年
在城市发生的事件
。
是否有任何API
可供使用在 Android 应用程序中?
很少有应用程序提供诸如 Poynt 之类的事件。
我不明白他们是如何提供的,但如果有人知道这个问题,请提出建议。
Android application should show Events
happening in city as per day/month/year
anywhere in the world.
Is there any API
to use in android application ?
Few application providing events such as Poynt .
I'm not getting how they provide but if any one know this issue please suggest about it .
发布评论
评论(3)
您很可能必须使用多个 API,这些 API 的分类如下,我怀疑是否存在具有任何像样的 API 的开放数据库,其中包含接近世界上“无处不在”或“每个”事件的内容......所以您会必须选择你的战斗,你真正想提供什么:
音乐
Last.fm - http://www.last.fm/api
Songkick - http://www .songkick.com/developer
Jambase - http://developer.jambase.com/
Gruvr - http:// /gruvr.com/developers/
社交
聚会 - http://www.meetup.com/meetup_api/
Plancast - http://plancast.com/api
Facebook 活动 - http://developers.facebook.com/docs/reference/api/event/
我无法找到经过验证的真实全包和开放数据库还提供 API,但以下情况除外:
并且您通常可能想要浏览类似以下内容的内容: WebAPI Finder
以下是帮助您入门的一些内容。我真的认为你需要从小处开始并逐渐扩大。您希望如何开始或被视为(观众、活动类型等)。从特定的地理位置开始也会更容易。从小处开始,逐渐扩大。
You will most likely have to use multiple API's somewhat split up in categories as follows, I doubt any open database with any decent API exists that contains anything close to "everywhere" or "every" event in the world...so you'd have to pick your battle, what do you really want to offer:
MUSIC
Last.fm - http://www.last.fm/api
Songkick - http://www.songkick.com/developer
Jambase - http://developer.jambase.com/
Gruvr - http://gruvr.com/developers/
SOCIAL
Meetup - http://www.meetup.com/meetup_api/
Plancast - http://plancast.com/api
Facebook Events - http://developers.facebook.com/docs/reference/api/event/
I have not been able to find tried and true all inclusive and open database which also offers an API except for the following:
and you may generally want to browse something like: the WebAPI Finder
That's a few to get you started. I really think you need to start small and grow large. How do you want to start or be seen as (audience, event type, etc). It will be easier to start off in specific geographic locations too. Start small and grow larger.
您可以从互联网上使用您想要的每个 API。
我认为 facebook 的 API 是一个很好的起点。更具体的
Facebook API
的事件部分,请查看以下内容:Facebook 事件 APIYou can use every API you want from the internet.
I think a very good one to start with is the API from facebook. More specific the Event part of the
Facebook API
, have a look at this : Facebook Event API最好我不会为事件及其庞大的集合购买任何
API
,因此作为初学者,我会尝试继续在我的服务器上用XML
编写一些事件,并且我会在 android 中解析它。使用设置的文本视图将其显示在 androidxml
文件上。在我的服务器上,我应该根据
事件名称、日期、地点和描述
收集一些事件。稍后我会在我的 Android 应用程序事件中显示它。当用户单击我的应用程序中的事件按钮时,他们将获得我输入的详细信息。
Its better that i wont purchase any
API
for events and its huge collection so as a begginner , i would try to go on writing few events inXML
on my server and i would parse with it in android . Display it on androidxml
file with set text view .On my server i should collect few events as per
event name , date , venue and description
.Later i would display it in my android application events . when user click on event button in my application they would get my details as entered.