Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I want to write an RoR mobile app which gives me the current time at the country for a given phone number, with its area code. Is there a good api for this?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
824 views
Welcome To Ask or Share your Answers For Others

1 Answer

If you are OK with adding Javascript to your project, then you may want to try ChronoMouse.js, which will help get the current time, GMT offset, time zone name, location, capital city, daylight savings laws, or daylight savings status for any US/Canada area code, or country code.

For country codes, the info is based off of the capital city.

For example:

console.log( getLocalInfo('+49').time.display );

// 15:07

For more examples and documentation, see www.chronomouse.com.

Note: I am the author of the project.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...