• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Creating a Web frontend for Android App using android APIs.

I have an android app for Music streaming with following features

Music Streaming Ofcourse
Creating Playlists
user signin/signout
Search by category like album or artists or genre
FM Radio Streaming
Push Notification
Equalizer and so on.

I also have a backend that is created in Ruby on Rail (Mysql database) for Music management like adding songs, genre, albums and artists. It also handles sending push notification and all.

And now I want to create a web frontend for users to enjoy the songs through their laptop or desktop so that I can give my users the flexibility to play songs, view playlist that they create in android devices.

Here is the main question:

How Can I create the frontend to use the json api that my android app is using so that I dont have to create another backend for the website.? Let me know if its possible or not.

If not possible to use the json api then how can I proceed so that I avoid another backend work?
 
If you're talking about using JSON data (coming from the site) on a PC browser, Javascript (running in the user's browser) does that with JSON.parse(json). It returns a Javascript object, which your Javascript front end will use.
 
Back
Top Bottom