How to use Sylius as back-end? Its REST APIs are only for admin users - sylius

I have read sylius document about REST API. I found that all the REST APIs of Sylius are used for admin user, so I cannot separate front-end with back-end.Same question like this

You can use the ShopApi plugin to have full experience of Sylius APIs :) https://github.com/Sylius/SyliusShopApiPlugin

Related

Can I Integrate Zapier in my Website With all its Capabilities?

I have a Usecase in which i need to integrate all the capabilities of zapier,like zap creation ,creation of a workflow etc via my website (not an app) which is not related to zapier in any ways.
In short i need to give my Website Users ,all privileges that zapier provides.
Is that possible ?
if yes ,Please help me with the api's available for such an integration.Looking forward for a help.
Zapier does not have an API or whitelabel option that would allow for this - Zaps can only be created via zapier.com. The only exception is the Partner API, which allows Zapier integrations to embed and display their own Zap Templates - details on that here: https://zapier.com/developer/documentation/v2/partner-api/. That's only accessible if you've built an app on Zapier's platform.

How to use magento api with iOS app

I want to use Magento custom API with iOS app.
What option we have to develop such a application.Magento SOAP or REST or anything else is useful in this case.
Please suggest me best way.
Thanks
You have to setup API roles and users in Magento. After that you can use these credentials to fetch and update data in Magento.
Check this http://www.codepetals.com/setup-your-magento-store-for-integration-with-mobile-app-or-an-erp/

laravel 4 social with simple auth wrapper

I start using laravel (ver 4) and I got to the point I need to use authentication on my website.
I tried to find package that will allow me to wrap the all idea of "standard" / simple authentication and the social one (like facebook, google+ and etc..).
I found ion_auth and with some extensions it's allow me to use one authentication library for all kind of users - but it only works in codeigniter framework.
After a lot of research I couldn't find any ready package that allows me what I'm looking for, Does anyone familiar with such library or had this kind of issue and can tell me how he handle it?
This is a paid library, but it works pretty well. https://cartalyst.com/manual/sentry-social
i had a good experience using artdarek/oauth-4-laravel. it also has got a nice set of examples for using with different login providers.

Rest API integration with joomla

I have to integrate this API (http://api.iqrez.com/documentation/) in a template of joomla 3.0. Do you know if there is an extension that can permit me to integrate this API? Or please can you give me technical infos for integrate it?
Thank you in advance
Luca
A Joomla Template provides a theme or style mechanism for the website.
The API you've pointed to is described as "Online Booking Engine"
The Joomla Extension Directory (JED) has a section on Bookings & Reservations
Searching the JED for "iqrez" reveals no hits.
None of these are questions suitable for StackOverflow, which is why you're getting downvoted.
To integrate a Joomla site with a 3rd party API you will need to create an extension, the Docs website has a Developer portal. Depending on the exact functionality you want and the degree of integration you will need to create either a "component", "module" or "plugin". Or a combination of all three.

Import google plus friend list using php

Could any one give me suggestion on how to get friend list on google plus using PHP.
Is there any plugin or widget to do this.It would be great to know.
Thanks in advance.
Your user needs to grant your app access to this information via the OAuth 2.0 scope https://www.googleapis.com/auth/plus.login and then you can use the REST API or client libraries to get the list of friends.
See the Google+ PHP quickstart for a sample application that accomplishes all of the steps necessary for what you want to do. The sample uses the Symfony framework to keep the code concise, but you should be able to take away how to do the same in your own PHP environment.
Also, see the Google APIs PHP client library that you can use in your project. This library is embedded in the quickstart via composer.