Mailchimp API and YII framework - yii

Has anyone used Mailchimp api with YII framework? Is there an well documented extension? I found an extension but it has no documentation https://github.com/jamesmoey/Yii-MailChimp.

There is a well documented php api from mailchimp, there is no need for a yii extension. Simply include the MCAPI.class.php and create a MCAPI object with your api key. You will have all functions available like listSubscribe($id, $email_address) etc.
Edit
The extension you refer to is a simple wrapper for the official wrapper. You will have the same methods available.

Related

Where is the documentation for Twilio's SendGrid c# Library?

I downloaded the SendGrid NuGet package but can't find the documentation for it anywhere online...
To be specific I'm looking for something that shows me classes, methods, and properties.
Something similar to: https://www.newtonsoft.com/json/help/html/Methods_T_Newtonsoft_Json_Linq_JObject.htm#!
Twilio SendGrid developer evangelist here.
I can't find a set of docs of classes/methods/properties, but there is this document on usage covering all the APIs and then the API reference has all the detail you need on what API requests and responses should look like.

Where is the documentation for BigCommerce js sdk?

The documentation for building an application for BigCommerce mention
a JavaScript SDK.
A single callback is mentioned, as part of the init method.
Bigcommerce.init({
onLogout: callback
});
Where is the rest of the documentation for this library located at?
Is this library in a repository in the BigCommerce github organization?
The SDK does sit on a private BigCommerce GitHub repo and there's no additional documentation at this time, although we can augment what's there. The SDK exists to provide a single callback that app creators can use to handle control panel logouts-it doesn't do anything else. Probably something we can audit to see if it's possible to make it public, but the project is pretty static (meaning we update for maintenance/security, but no planned functional updates).

Groovy rest api for Dropbox without third party plugins/libraries

I am trying to create a groovy script that will, based on some conditions, delete a dropbox folder full of artifacts.
I have been struggling to understand/figure out how to use Groovy restful API's without installing a bunch of Grails libraries or plugins, or the Dropbox API library from github.
Is it possible to use this dropbox URL: https://api.dropboxapi.com/1/fileops/delete_folder
without downloading extra libraries?
I'm having a lot of trouble finding information on the subject without the use of additional software.
Thanks !
Yes, you can easily create your own dropbox client from scratch but it is easier to check hints for JAVA developers and github repo with dropbox-sdk-core, which is already implementing dropbox API.
Remember to check out examples on github.

Rally Application Manager support for Java/Ruby/C# Toolkit?

Is there any documentation or examples on using API keys with Rally Ruby toolkit? Also, are the other Rally toolkit (Java,C#) supported for use with API keys? (https://help.rallydev.com/rally-application-manager). Thanks!
There is a Ruby example here. Replace config[:username] and config[:password] with config[:api_key]
config[:api_key] = "_abc123"
Currently only rally-node and ruby toolkits support API Key, but eventually the others should too.
This post has a rally-node example that uses API Key.

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.