Google Ads conversion tracking on subdomain not working - google-ads-api

I am running a Google Ads campaign on www.example.com. The main site links to a sub domain named app.example.com where there is a registration form. The register form over there is not tracking conversions. I believe the issue is related to the form being on the subdomain.
Does anyone know the solution to this?
I tested this manually by doing registrations and also using the troubleshooter provided by Google Ads.

Related

Is there a way to collect Google IDs which access a Google Site?

I have created a Google Site which links to various Google Classrooms. I would like to know who is using the site.
Is there a way of recording the Google ID in a Google Sheet, for when someone accesses the site?
Any help or even a point in the right direction would be great.
Thanks
Ok, since you are using Google Sites, you can create a user start page by following these steps, this page will ask the users to authenticate with their emails, and will allow only users from the organizational unit for which the site is allowed.
After that step, you can use Google Analytics with your Site to track the behavior of users in your Site.
I suggest starting with a quickstart of Google Analytics to get the hang of it.
And soon enough you will have it set up to suit your needs.

Can I have a dynamic url with the Google oAuth API?

I use the oauth api for login on my sites. Right now if a user needs a site based on a subdomain (user.mysite.com) I have to manually add it in the console so the login button will work at that new domain. The console says you can't use a wildcard such *.mysite.com. Is there way way to make this dynamic or a way to add a site programmatically?
I use a tool to create the subdomains and if I could add it to the list of approved domain when upon creation that would be great.

Google Login Plugin plugin does not allow users from multiple domains

I'm using using Jenkins' Google login plugin for user authentication. I've installed and configured the plugin as mentioned in documentation and working as well. However users from only one google app domain can login to jenkins and access it(jira link). We have users from couple of domains. Another issue with this plugin is- not able to control user authorizations. All users can do anything. I've attached screenshot showing jenkins google login plugin configuration
Is there any workaround or alternative for this?
Since version 1.3 (November 21st, 2016) the google login plugin allow multiple domains separated by comma.
Check the changelog:
https://wiki.jenkins.io/display/JENKINS/Google+Login+Plugin
And the PR:
https://github.com/jenkinsci/google-login-plugin/pull/3
According to Google Cloud Platform that's not possible and the only suggestion is to set "Allow anyone with a Google account" if you are using multiple domains:
Understanding authentication for your end-users
...
Allow only members of a Google Apps domain to access the application. This is ideal for “intranet” applications where access is
limited to the users in your domain.
This method can only restrict to a single Google Apps domain. This
will not work if you use multiple domains with Google apps. If you are
using multiple domains, then select “Allow anyone with a Google
account” and extend your application code to restrict access to
end-users that are from your set of Google Apps domains. Your
application can use the value of the user_organization of the
signed-in user (rather than parsing the email address) to determine
the domain name of the user.
Also, this issue is already registered in https://issues.jenkins-ci.org/browse/JENKINS-32536 and it is still Open and Unresolved

Adding Facebook Pages Search Directory to Website

Are there any methods of adding something like the existing Facebook Pages directory to a website?
Directory can be found here: https://www.facebook.com/directory/pages/
I am currently using the Facebook API in my Rails app and I have a way to eventually solve this problem. However, it requires requesting access from Facebook and getting approved which will take a bit of time and adding the search might be a better option for my implementation anyway.
The only way to implement a Facebook Page search on your website is the Search API: https://developers.facebook.com/docs/graph-api/using-graph-api/v2.2#search
You do NOT need to get approved for that, you only need an App Access Token. See the following links about Access Tokens:
https://developers.facebook.com/docs/facebook-login/access-tokens/
http://www.devils-heaven.com/facebook-access-tokens/

Using o-auth login on google apps domain

I'm trying to create a web service for my college, which uses Google Apps for education. We have our own themed login page. I was wondering if its possible to use oauth/ openID to use our Google apps account to log in. I know when I use generic oauth, I can enter the school email address and force it to take the Google apps domain, but is there a way to redirect to it directly?
You can use the hd parameter in the oauth request to specify a google apps domain to login through. I believe the apps domain needs to have the option enabled and/or be a paying domain, but I am not certain about this part
Example URL
https://accounts.google.com/o/oauth2/auth?access_type=offline&DOMAIN.COM&response_type=code&redirect_uri=http%3A%2F%2Flocalhost&scope=https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email%20https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fcalendar&client_id=CLIENT_ID&type=web_server

Resources