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

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.

Related

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.

Updating to mailchimp api v2.0

I am working on a mailchimp plugin that integrates with mailchimp using the v 1.3 api. I'm trying to update it to v2.0 but other than changing the api version in the callback URL, I'm not sure what else needs to be changed. Version 1.3 seems to still work even tho it has been deprecated, but I'd like to update it to 2.0 anyway.
What steps would one have to take to update the entire api? I'm sure there are/have been functions that were deprecated for 2.0.
Thanks
Unfortunately, you are going to have to review the differences between the API specifications for v2.0 and v1.3 -- and look at which functions you call to see what you will need to change.
Mailchimp v2.0 specifications
Mailchimp v1.3 specifications

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.

Mailchimp API and YII framework

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.

Are There Any Applications That Use The FriendFeed API?

Does anyone know any applications that make use of the friendfeed API?
Ping.fm posts to FriendFeed.
FriendDeck aggregates from FriendFeed.
Both use remote key authentication and the FriendFeed API.
FFToGo is a nice mobile interface for FriendFeed that was built on the FF api. Its developer was subsequently hired by Friendfeed and still works there.
There is also an auto follow app http://www.ffollo.com built using the new FriendFeed API.
Well, I recently released a script that uses the FriendFeed API, it's on GitHub.