Tag Info

New answers tagged

0

What you want to do is to have the suppliers authorize with OAuth2 and store their access_token and more importantly refresh_token. The buyers do not need to authorize with Google at all, you can simply send their print job to the suppliers printer with the appropriate suppliers access token. This also makes it easier to handle the access to the different ...


1

May you can check with this : int type = getObjectType(); if(type == Person.ObjectType.PAGE) //this is a page else if(type == Person.ObjectType.PERSON) //this is a person


1

I agree that the documentation does not express it well, but if you look for a little more you find that it is refering to constants, defined here (in fact there is a link from the page you posted) http://developer.android.com/reference/com/google/android/gms/plus/model/people/Person.ObjectType.html


0

You can do this quite simply with Google maps geometry library. First be sure to add the google maps geometry library. <script type="text/javascript" src="//maps.googleapis.com/maps/api/js?libraries=geometry&sensor=false"></script> Then, define your polygon var rightShoulderFront = new google.maps.Polygon({ paths: ...


0

There are two methods available to do this, both are documented here: https://developers.google.com/+/mobile/android/people#retrieve_an_authenticated_users_email_address


0

There currently is not an API from Google for analyzing text and returning hashtags. This would be a great feature request. Submit your feature request from the Google+ Issue Tracker.


0

I solved my problem sharing the calendar to the *@developer.gserviceaccount.com, and I added http://www.google.com/calendar/feeds/ to scope of the request. The calendar that I'm using is also from a google apps user so I add also my account *.apps.googleusercontent.com -> http://www.google.com/calendar/feeds/ to Manage API client access from google apps ...


0

I couldn't find a straightforward way to do this using hostHeader configuration in the ServiceDefinition.csdef file so I rolled my own RedirectInvalidDomainsAttribute class to perform a 301 (Moved Permanently) redirect back to my main site during a request for an invalid domain. In case anyone else runs into the same problem, here's the code: ...


0

You have to make a geocoding request like this.


0

following code will take you directly to the Google Maps code snippet shows route between the two places if you put the lat and lng of them Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse("http://maps.google.com/maps?saddr=" + String.valueOf(fromlat) + "," + String.valueOf(fromlng) ...


0

In "https://www.google.com/webmasters/tools/feeds/sites/http%3A%2F%2Fando.ueuo.com%2F/", %2F is the url encoded equivalent of /. The problem is that you have a slash right after it, so it becomes "//". Change it to "https://www.google.com/webmasters/tools/feeds/sites/http%3A%2F%2Fando.ueuo.com%2F" I find it easier to use System.Web.HttpUtility to do all ...


0

It might have something to do with compression of the image in the PDF. I mean, PDF supports JPEG2000-encoded images (JPXDecode Filter) and PDF Reference states that: From a single JPEG2000 data stream, multiple versions of an image may be decoded. These different versions form progressions along four degrees of freedom: sampling resolution, color ...


0

No matter how you present it, you're selling links. That's exactly what Google doesn't want. They've made it very clear they're cracking down on this and not using nofollow on that link can result in your site's page being ranked poorly or not at all.


1

The real-time reports are not yet possible. If you take a look at: https://code.google.com/p/analytics-issues/issues/list On the top of the list is "Access to Real Time data".


0

AuthSub proxy authentication is used by web applications which need to authenticate their users to Google accounts. The website operator does not need access to the username and password for the calendar user - only special AuthSub tokens are required. Please see the AuthSub documentation for more detailed information. When a user first visits your ...


0

For Windows XP Click Start, click Control Panel click Add or Remove Programs. Click Add/Remove Windows Components. The Windows Components Wizard appears. Select Internet Information Services check box and Click Apply.


0

The problem is, however, that this url is utf16 encoded UTF-16 doesn't mean what you think it means. It is an encoding of Unicode characters to bytes used internally by the string types of some systems such as the Win32 API. UTF-16 is almost never used on the web because it is not ASCII-compatible. ...


0

Sorry. Not Possible For Free .


0

I am very sure this isn't possible as the extractor is an XML file which compares results from parts of the email which are accessible to you to strings, regular expressions etc and can't include any scripts or custom code. I would advise you to test the sender/receiver email against your list of addresses within the gadget_spec.xml file. This means the ...


0

I think it is a no go for SEO. You should probably use <a href="link" rel="nofollow">link</a> Since you let the crawler go away to the advertisement if you don't. Crawlers like google's are good enough to not go away, but it will associate your site with the advertisement and that is not always what a customer or client wants.


0

Actually, there are a scala wrapper over JFreeCharts: https://github.com/wookietreiber/scala-chart It may be more handy to use scala API's working with java-based libraries.


0

You can try it by downloading the jquery file and give him static link, use this link https://developers.google.com/maps/documentation/staticmaps/ to generate your google map code to use within div and other information regarding google maps. I can'nt find any problem with this one above. working fine as i used it.


0

Just open a browser to https://www.google.com/search?q=term1+term2+term3 where term1, term2, and term3 are the terms you want to search for (and of course you can add more).


0

you can open an intent with specified URL like this Intent myIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(strURL)); startActivity(myIntent); strURL can be constructed with appending google.com/search?q=searchstring1+searchstring2 to your search string


0

I don't think it is necessary to "host" the content using the way from the accepted answer. It is too complicated for a normal user with limited developing skills. Google actually has provided hosting feature without using Drive SDK/API, what you need is just few clicks. Check this out: http://support.google.com/drive/bin/answer.py?hl=en&answer=2881970 ...


0

There is a chrome addon that might allow you to do something like that: https://chrome.google.com/webstore/detail/voice-search/hhfkcobomkalfdlmkongnhnhahkmnaad?utm_source=chrome-ntp-icon I haven't used it so wouldn't know how convenient is it.


0

With Google Packaged Apps, are you required to have Chrome installed before installing the app? Yes but once packaged apps are officially launched if you have chrome browser installed on any device you should have the runtime to run packaged apps. With Google Packaged Apps, can you package everything you need to install and run the program in a ...


1

You'll want to check out the Google Custom Search API. On the python side, as others have mentioned, I would look at urllib and perhaps lxml for some robust xml/html parsing.


0

Get rid of both <uses-library> elements. The one for com.google.android.maps is for Maps V1, and you are not using Maps V1. The second one is something that you completely made up yourself. There is no such library, and therefore your <uses-library> statement will fail on 100% of Android devices.


0

Make a create Marker function like this (not tested): function createMarker(point, url) { var marker = new google.maps.Marker({ position: point, map: googleMap, icon: 'map-pin.png', url: markerUrl }); google.maps.event.addListener(marker, 'click', function() { window.location.href = marker.url; }); } ...


0

One option: Cover the whole world except for a hole over your continent of choice. example of concept (US state of Virginia) Limit the zoom and the bounds to prevent the map from going too far from showing that continent. description of how to limit the viewable area


1

I used the G+ icon from https://developers.google.com/+/branding-guidelines. Hope this helps!


2

You can simply check to make sure that the host the application is running under is the domain name you want. If it is not, then simply do a 302 redirect to the domain name you want. There are several places where you can inspect the request and do the redirect: - Global.asax - Custom module - Override the OnActionExecuting for action methods


1

I found the solution here: http://googleappsdeveloper.blogspot.com.br/2013/05/introducing-actions-in-inbox-powered-by.html . It seems it just needs a JSON-LD markup added to the email templates : <script type="application/ld+json"> { "@context": "schema.org", "@type": "Movie", "name": "The Internship", ... information about the movie ... ...


0

// Make an array of the LatLng's of the markers you want to show var LatLngList = new Array ( new google.maps.LatLng(<?php echo esc_html( $et_location_lat ); ?>, <?php echo esc_html( $et_location_lng ); ?>), new google.maps.LatLng(<?php echo esc_html( $destination_lat ); ?>, <?php echo esc_html( $destination_lng ); ?>) ...


0

Right now I don't know of any out-of-the-box solution to this problem. Some people have implemented chat in a realtime document by just placing the chat messages in the realtime data model. This works fine so long as you don't also want to use undo/redo feature. If you are using undo/redo, then people would end up undoing the chat messages. We are ...


1

You will need to build your own chat system, as Google just killed off XMPP support on the Chat API (which largely kills off the use of the API). The new Hangouts API does not provide access to Chat ( though some additional methods may come in handy: https://developers.google.com/+/hangouts/ for the dev API). You are therefore left to your own devices. Fear ...


0

For Google Analytics SDK 2.0b4 and UDID reference, just remove libGoogleAnalytics_debug.a entirely from project, clean, recompile and submit again.


1

Better late than never this works i think types: ['(cities,country)']


0

To the best of my knowledge you will have to use the polyline xml features within the Google Maps API. Here is an example that highlights the CA I5 using polylines. http://www.geocodezip.com/v3_GenericMapBrowser.asp?filename=I5Polyline.xml I don't know the exact implementation to restrict the road radius from a point, but if google does not offer a simple ...


0

So I have a very similar issue, where I'm actually building a Rails-based openid provider but being consumed by another Rails app. I basically adapted the code from The whole URL was: ...


0

First, I was advised to use a different URL: https://www.googleapis.com/sj/v1beta1/trackfeed The correct way to provide nextPageToken to the second request is now to send it per POST as JSON: $ curl --header "Authorization: GoogleLogin auth=DQA..." --header 'Content-Type: application/json' --data "{'start-token': 'KmM...'} ...


0

I believe you need to call setOAuthCredentials in order to get the access. Here is the sample for the same: GoogleOAuthParameters oauthParameters = new GoogleOAuthParameters(); oauthParameters.setOAuthConsumerKey(consumerKey); oauthParameters.setOAuthToken(accessToken); contactsService.setOAuthCredentials(oauthParameters, signer);


0

While I'm waiting the answer I'd like to presend my own solution which can help to test (not debug) the application you develop: Upload simple "Hello world" project with package name you want with in your own developer console. Take some resourses customization, etc. Public your project (you can download it from Google Play). Than in Google Play in ...


1

I would start here: https://developers.google.com/accounts/docs/OAuth2ServiceAccount That should give you general high level info for server to server calls for authorization. Then read up on the Java client here: https://code.google.com/p/google-api-java-client/wiki/OAuth2 You should be able to piece things together with those two sets of information. ...


0

From what I understand the Google Freebase project is an interface to Google open knowledge graph.


0

You should follow the following steps to find google map information Step 1: make the google map url with your latitude longitude pair to get information Step 2: pass the URL to get json object Step 3: parse the json object to get your required data Follow the link: how to get json object json parsing tutorial


0

You could try adding approval_prompt=force in your HTTP request that you make while looking for access tokens. This parameter ensures that the user has to log in/provide credentials every time the app is run. Quoting from Google's documentation. "If the value is force, then the user sees a consent page even if they have previously given consent to ...


0

After some research and talking to SEO guys, I found that its permissible to change text as we require. Only Meta tags should be correct.


1

You need to fit the bounds of the map as it pertains to your markers. // Make an array of the LatLng's of the markers you want to show var LatLngList = new Array (new google.maps.LatLng (52.537,-2.061), new google.maps.LatLng (52.564,-2.017)); // Create a new viewpoint bound var bounds = new google.maps.LatLngBounds (); // Go through each... for (var i = ...



Top 50 recent answers are included