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

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.

Related

How to integrate a videocall API with Wordpress?

I am having some problem in understand how to integrate a videocall API with a Wordpress site.
I am developing a website which has a "meeting room", this site is built using Wordpress. I am trying to use some videocalls APIs, but couldn't understand the steps in order to integrate with de Worpress. Do I have to build a plugin?
I know some existing plugins for videocall, but they do not have the features I need, therefore I found some videocalls APIs that have the features I need. I also know how to embbed a videocall using iframe.
Thanks in advance.
If you decide to write your own video communication plugin using WebRTC technology, pay attention to:
select signaling for videochat
creating of Turn server
try this example: https://wordpress.org/plugins/wp-webrtc2/

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/

Dropbox - any API to cli_link?

I'm using the dropboxd service under Linux, which requires you to log into their website e.g. https://www.dropbox.com/cli_link?host_id=2173bf325f94beee3b1879d2c7b49e69 to link the machine to your account.
Is there any programatic way to do this (ideally using Java)? To access the website above it seems you need to login using forms (which seems tricky to do programatically), and their basic REST API (https://www.dropbox.com/developers/core/docs) doesnt seem to cover the cli_link command.
I could write an app to do the sync using their full API, but it seems like overkill since aside from the cli_link requirement the basic dropboxd does all that I need.
The official Dropbox desktop client is unrelated to the API, though both the API and the Linux CLI require user interaction on the Dropbox web site (once per link) to authorize the linking. Also, note that automating/scraping the site itself is not allowed by the terms:
https://www.dropbox.com/terms#acceptable_use
Not really a solution for DropBox users, but in the end we just moved over to use MediaFire instead. That has a full REST API and doesnt require any manual intervention.

Google Plus API Nuget Package

I need to create posts, etc through my ASP.NET MVC 4 application.
Does anyone know decent library for Google Plus API? (Preferable as a NuGet package).
There is currently no publicly documented API that lets you automatically post to your Google+ page or stream.
There is an API that HootSuite is currently using that is slowly opening up to other vendors. See https://plus.google.com/u/0/104946722942277428266/posts/LUi2ZNyRHag for more information about what is coming and how you can sign up to request access to this. This is expected to allow you to post to a Google+ Page.
There is also the "Google+ History API" that is currently in developer preview which will allow you to create moments for a user, but they would need to manually share these moments on their stream if they choose to do so. See https://developers.google.com/+/history/ for further details.

Gmail Sidebar gadget development, getting started

I'm kind of new to dealing with Gmail API and I have a question regarding the development environment.
I want to create a simple application that fetches unread emails from a gmail user, sends it to a processing server of mine (RESTful web service) where I analyze the data and extract some information, then finally use the extracted information to add it to the user's Google calendar.
I was thinking of developing a sidebar gadget but I was curious about which IDE to use. Do I use the Google scripts API? Will it make my gadget portable? Which IDE to use?
I know about the Gmail API that uses oAuth access to IMAP & SMTP but how can I integrate it with the sidebar gadget? Where do I write the code? Which language?
First, you will want to read Google's Gmail gadget documentation to learn how to make them.
Basically, you can either use the Google Gadget Editor (GGE), which is a very simple IDE that runs in your browser, or you can use whatever editor you prefer for editing JavaScript and XML. You will also need a website where you can post your code. A google gadget is an XML+Javascript file that resides in some webserver and that follows the schema google dictates.
Google Apps Scripts are a different thing. They are scripts that run in a google spreadsheet and can access the user's google services (docs, gmail, and some other ones). But, they are not Gadgets. To write one, create a new spreadsheet then go to Tools->script editor.
IMAP and SMTP are another thing. They are protocols for talking to a mail server. There are imap and smtp libraries available for nearly all programming languages. But, that is not what you want if you want to implement a gadget.
One important thing to consider is that Apps Script is the only way to get full access to Gmail. You could easily automate all the processing to send the information to Calendar.