Skip to content

Joomla API for mobile apps (Android, iPhone/iPad & External site)

License

Notifications You must be signed in to change notification settings

jibon57/Joomla_API

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Joomla API for mobile apps (Android, Iphone/Ipad & External site)

This extension will help you to retrieve data from Joomla site for mobile devices or other external website easily. You can use this API if you want to publish Joomla articles, K2 items, easyblog posts or virtuemart products in another PHP site. This component will work with Joomla 3.X. Most of the mobile apps use JSON array to collect data from webserver. This extension will converted Joomla information into JSON format. So apps developer can collect information quickly & easily.

Supported Extensions/Features

> Joomla authentication directly using Joomla username & password
> Joomla registration
> Joomla contents, K2, easyblog, Virtuemart, Hikashop, Kunena Forum, AdsManager ....

From version 3.2+ you will be able to use jsonp feature. In this case you will need to send an extra field callback during GET or POST request. Example in jQuery:

jQuery("document").ready(function($){
    var url = "http://MyJoomla.com/index.php?option=com_hoicoiapi&task=getContents&token=TOKEN";
   
    $.ajax({
	
        method: "GET",
        dataType: "jsonp",
        url: url,
        
        success: function(res){
            console.log(res);
        },
        error: function(res){
            console.log(res);
        }
    })
})

Without jQuery:

var url = "http://MyJoomla.com/index.php?option=com_hoicoiapi&task=getContents&token=TOKEN&callback=MYCALLBACK";

More: https://www.hoicoimasti.com/products/8-joomla-extension/3-joomla-api-for-mobile-apps-android,-iphone-ipad-external-site.html

About

Joomla API for mobile apps (Android, iPhone/iPad & External site)

Resources

License

Stars

Watchers

Forks

Packages

No packages published