I want to change the minimum SDK version in Android Studio from API 12 to API 14. I have tried changing it in the manifest file, i.e.,
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="18" />
and rebuilding the project, but I still get the Android Studio IDE throwing up some errors. I presume I have to set the min SDK…
In HTML5, CSS selectors seem to operate well with data-* attributes. For example:
<style>
div[data-foo='bar'] {
background:#eee;
}
</style>
<div data-foo='bar'>colored</div>
<div>not colored</div>
will properly style the first . But, attempts to select such elements using the selectors-api fail. Examples:
…
i am trying to run the sample program which comes with google data api.I am geting a run time error at following line
YouTubeService myService = new YouTubeService("gdataSample-YouTube-1");
erroe is as follows :
run:
Exception in thread "main" java.lang.NoClassDefFoundError: com/google/common/collect/Maps
at…
Trying to connect to Facebook to make a statusupdate through my Android application.
Got the whole thing running but I need API key + secret. Where can I create/get a hold of these?
private static final String apiKey = "<YOUR API KEY>";
private static final String apiSecret = "<YOUR SECRET KEY>";
Tried…
Hi all,
I am trying to get started with JSON in Python, but it seems that I misunderstand something in the JSON concept. I followed the google api example, which works fine. But when I change the code to a lower level in the JSON response (as shown below, where I try to get access to the location), I get the…
Hello, I'm currently trying to se privacy setting on post I do through Graph API, code is:
function graphStreamPublish(){
message1 = document.getElementById('message').value;
FB.api('/me/feed', 'post', { message: message1 }, privacy: {value: "CUSTOM", friends: "SOME_FRIENDS",…
My goal is to pull XML data from the API and load it to a sql server database. The frist step I'm attempting here is to access the data and display it. Once I get this to work I'll loop through each row and insert the values into a sql server database. When I try to run the code below nothing happens and…
Hi, is there any possibility how to fetch any specific type of posts from facebook news feed via graph api?For example on my news feed I have statutuses, links, photos, vidoes, and so on..I only want to get the ones with type=status over graph api..I have seen some get parameters in documentation, but…
I am working on a project with the StackExchange API, the problem is at a moment I have this Exception on eclipse console:
java.io.IOException: Server returned HTTP response code: 400 for URL: https://api.stackexchange.com/2.1/questions?order=desc&sort=votes&tagged=OSM&site=stackoverflow…
TinEye provides a great way to "reverse" search by image (i.e. upload/transload an image and have multiple possible sources of that image returned as results.)
Since screen-scraping is messy and unreliable, I'm looking for a free API/library/web-service that could offer the same (or similar)…
I am upgrading my codes from Google Map API V2 to V3.
In V2, I used GlocalSearch to get the latitude and longitude for the given address.
In V3, I saw google.maps.Geocoder() and try to get the similar detail. However, the lat & long given by the V3 function is not accurate.
Pls see the…
I'm using the WhitePages API ( developer.whitepages.com ) to get a phone type (landline or cellular) and the phone's service provider (Verizon, T-Mobile, etc), but they only have a personal API which limits you to 2 calls a second and/or 1,500 calls a day. The paid version, or "Pro", is a…
Hi friends,
The issue is this:
I have a web application that runs on a PHP server. I'd like to build a REST api for it.
I did some research and I figured out that REST api uses HTTP methods (GET, POST...) for certain URI's with an authentication key (not necessarily) and the information…
Hi guys. I'm building a site, and I need to query my last two tracks from my soundcloud account and display them on my page.
I've read the Soundcloud API documentation but it seems obscure and far from my reach.
I've installed the PHP library for using the API and Oauth, and set up my…
I am just starting to think about how api keys and secret keys work. Just 2 days ago I signed up for Amazon S3 and installed the S3Fox Plugin. They asked me for both my Access Key and Secret Access Key, both of which require me to login to access.
So I'm wondering, if they're…
I'm using Audiveris API to generate xml(MusicXML) file once the sheetmusic(e.g. pdf/img file) is being input (i.e. When I give the sheet music (pdf file) location, to generate the xml file out of it (in another location)).
Audiveris has its own GUI to do this. But can I do…
Hi, because there is no way doing it with the GraphApi, i try to do it with the old REST Api,
but without any success.. no error msg. but also no invite.
$restApi = $facebook->api(array(
'method' => 'events.invite',
'eid' => $eid,
…
I'm using Audiveris API to generate xml(MusicXML) file once the sheetmusic(e.g. pdf/img file) is being input (i.e. When I give the sheet music (pdf file) location, to generate the xml file out of it (in another location)).
Audiveris has its own GUI to do this. But…
I am building a site that runs an automated process every 30 minutes to match up new flights with their respective user. Once this process is completed I want to email the flight details out to the respective user. However the flight info will be different for every…