api

Retrieve Details of Deployed Solutions in SharePoint using PowerShell

Hi, I need to retrieve the details of all deployed SharePoint solutions, as are displayed in the Central Administration > Operations > Solution Management (AKA the Solution Store), using a PowerShell script (v2.0). Can anyone offer any guidance on how to retrieve this information from the SharePoint solution store via the SharePoint AP...

Limits for single contact xml in Google Contact API in general and gd:extendedProperty in particular ??

Hello What are the limits for the following in Google Contact API Size limit for a single contact xml, How big it can be? is there any limit(in size OR number of sub tags) in the content of a gd:extendedProperty of a single contact xml ?? Advance Thanks -Parimal Das ...

SXAPI API Initialization error

I thought it is related To Meta but it is a programming question any way. I was trying to practice Stackoverflow Api as a test case, I have tried using SXAPI (stack Overflow Version 4). When I try to run simple program to fetch some user info, like protected void Page_Load(object sender, EventArgs e) { ...

Look for a cost effective native PDF API

Hi, I'm looking to buy a performant while cost effective API in native code (C) so that I can perform conversions from Office file types to pdf and print them in file or real device. For info, I want to use the API (dll) also from managed code via PInvoke. By your direct experinece and knwoledge what would you recommend? Thanks! ...

Stream publishing in Facebook Connect

I would like to publish streams on an external Facebook Connect website. This should be done via the JavaScript client library which I've already included. The code of my page is as follows: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; <html xmlns="http://www.w3.org/1...

Google API Key and Domain Check

Hello, did anyone know how the domain check for the Google API Key works? Did Google only check for the URL in the Locationbar of the browser or is it more complex? I want to use such feature in my own application but any of my solutions is easy to bypass. ...

JavaScript API design examples

I'm designing a JavaScript API and am looking for outstanding examples. Please point out libraries whose API you like, one answer per library. If you don't mind, a comment explaining why you think it's good would be useful. Also, please upvote existing answers if you agree that some library that's already posted is good. Update: I'm ...

How can I call an API (for example Flickr API) in Ruby on Rails? Newbie question

Im building my first app in rails and I would like to call Flickr's API I know I can use flickr-fu, rflickr or other gem but I want to do it myself from scratch to learn Say, for example, I want to call flickr.photos.comments.getList that returns the comments for a photo. The arguments are api_key and photo_id. I have both. I will get...

Pull twitter profile image

Is there a quick way to pull twitter profile image in PHP or Javascript? I need to get the url of the FULL image (not avatar size). Thanks. Any code sample is good. ...

Learning Direct2D

I have some experince creating windows controls in GDI and now I'm looking for good resources (APIs, samples & good practices) to start learning about Direct2d. ...

Where can I find concise .Net documentation?

I'm just getting into .Net development and having come from a Java background I'm looking for documentation laid out in a similar fashion to Sun's Java API docs. A clean, simple interface with all the constructors and methods (and their parameters!) and properties for a class laid out on one page. No examples - a summary at the top, a...

Undocumented Yahoo! Weather API?

According to the Yahoo! Weather API documentation, a WOEID must be provided to obtain weather information for a specific region. The WOEID can be obtained by using the Yahoo! GeoPlanet service. If I have a zip code, this is two API calls to obtain weather information. Get the WOEID from a zip code: http://where.yahooapis.com/v1/places....

Domain model of Team Foundation Server

Did anybody see a domain model (information model) of Microsoft TFS (team foundation server)? Where it can be found? I need to understand ability to integrate it with other product. ...

A good HTML object model in Java ?

I'm looking for an HTML object model in Java, capable of parsing HTML (not required) and containing all HTML elements (and CSS as well) in an elegant object model. I'm looking for a pure java version of the Groovy's HTML builder. (I have no luck on google with this request.) I want to be able to perform stuff like: HTML html = new HTM...

Fogbugz XML_API PHP CURL File upload

I have built a php script which receives values in $_POST and $_FILES I'm catching those values, and then trying to use CURL to make posts to FogBugz. I can get text fields to work, but not files. $request_url = "http://fogbugz.icarusstudios.com/fogbugz/api.php"; $newTicket = array(); $newTicket['cmd'] = '...

Keyboard Layout library to find Neighboring Keys given an input key (java preferable)

Does anyone know of a library (preferably java) that can give me neighboring keys given a key input for US_ENGLISH standard keyboard? E.g. if I input the character 'd', I should get the following characters returned: [w,e,r,s,f,x,c,v]. Alternatively a grid manipulation api would work too (so that I can instantiate a grid with a qwerty ...

Dealing with high number of real-time calls to partner API in Rails

My Rails app needs to make a call to a partner's RESTful API for every request that it receives on a particular controller's action. I need to pass in request-specific parameters (e.g. IP, user-agent, etc.) to the partner API, and return the response I get to the user. Since the call to the partner API is very user-specific, I can't cach...

What is an Endpoint?

I have been reading about oauth and it keeps talking about endpoints, I googled it no help, Please tell me what an endpoint is or link to somewhere that explains it thx ★✩ ...

Does the Google AJAX API Loader have any advantage over direct link to Google hosted files via script tag?

I've recently moved a site over to use the Google AJAX Libraries instead of hosting the library js files myself. At the moment I'm using the Google recommended approach: <script type="text/javascript" src="http://www.google.com/jsapi?key=MYAPIKEY"&gt;&lt;/script&gt; <script type="text/javascript">google.load('jquery', '1.3.2');</script>...

Opening file from Java

What I need is to instruct OS to open the file with the default program used for that file type. Exactly as if, i.e., that file was double-clicked by user under Windows. The purpose is, i.e., "your PDF file was generated. Click here to open it". In platform-independent way, if possible... I dont know exact terms for what I want, so if...