I have audiences synced between google analytics and google ad words. There is a huge discrepancy between the two (see Below) and I have no idea why. I used google tag manager to implement my code and it seems to be set up correctly.
Some insight would be much appreciated. Thanks!
GA Audience
Related
I'm looking for examples of how others might have solved for this.
Did you build a custom cartridge?
Did you leverage some externally running agent to retrieve data by OCAPI (or Commerce Cloud APIs)? ...(i.e., a "pull" strategy)
I've read the documentation, spent many nights searching Google, searched the Salesforce Commerce Cloud Marketplace, spoken with several Salesforce Commerce Cloud expert consultants & system integration firms - but it appears no one is aware of anyone else doing this before.
Yes I was able to create a custom cartridge for Twilio.
Twilio provides many separate REST APIs for sending text messages, making phone calls, looking up phone numbers, managing your accounts, and a whole lot more.
You can go through their REST API documentation https://www.twilio.com/docs/sms/api. You can use their REST APIs and implement it in Salesforce B2C Commerce.
Follow creating a simple web service in Salesforce B2C Commerce.
https://documentation.b2c.commercecloud.salesforce.com/DOC1/topic/com.demandware.dochelp/content/b2c_commerce/topics/web_services/b2c_coding_your_web_service.html
We switched over to use Google App Engine a couple of weeks ago and for some reason we see a lot of spam requests coming to the page that was not present before.
Most of them is coming from "google inc" according to analytics -> Audience -> Technology -> Network with browser version 47.0.2403.89 going to similar paths as below:
/some-path/'-function()%7Bxssdetected(10355911)%7D()-%22%3E%5C%22%3E%3CscrIpt%3Exssdetected(10355911)%3C%2FscrIpt%3E%3CaUdio+src%3Dx+oNerror%3Dxssdetected(10355911)%3E%3C%22-'-function()%7Bxssdetected(10355911)%7D()/
and they are to the appspot domain not the custom domains
What is this? Why is google spamming our page with these strange requests?
Ok. Figured it out. It was Google App Engine -> Security Scans
I have been building several GoApp sites with GoLang backend and a lightweight html5/css3/javascript (usually AngularJS) front end. Most of these were for practice, but I have recently created my own personal site with this same pattern and decided that I wanted my own custom domain for it.
I followed the steps outlined here: Google App Custom Domains and everything seemed great. People were able to hit my site (with and without the www) and I was seeing traffic come through Google Analytics.
Now for the problem... as I was looking at various search engines and attempting to submit my site to the index, I am getting "Site Not Found" errors from the Search Engines. For Google and Bing I went into webmaster tools and everything looked fine on the diagnostics (Robots.txt and SiteMap.xml). However after a few days, I am still showing the site is not being indexed.
So the question is, does anyone know why I might be having issues? Nothing I have found seems to point to what the cause might be.
Some of the other SO pages I looked at first:
are .appspot google app engine sites restricted in crawl / search engine rankings?
Wordpress Site Will Not Index In Google
Google App Engine + Custom domain
I'm trying to setup Google App Engine with custom domain and SSL.
I've added the certificates to Google Apps and added the custom domains to Google App Engine.
I can successfully access http://domain.com and https://domain-com.appspot.com but when I try to access https://www.domain.com I got the following error: This webpage is not available
The domain is lonardiDOTorg
Any suggestions?
After some research, my findings show that this isn't supported for the moment being.
Issue 10802 on the Google App Engine issue tracker seems to confirm that it isn't yep available at the moment.
This stackoverflow post seems to contain the different workarounds that other users have used.
I hope this helps.
It is very challenging to help with this kind of issue without being able to inspect the domain and app itself.
Are there any privacy concerns in sharing the domain name so that we can see if the page is being returned by Google or by your DNS provider? It may be possible that the DNS records aren't set correctly.
Keep in mind that as this configuration is done on the Google Apps side, the Apps team may be able to assist if you have a Apps for Business account. This could help get assistance without sharing any information.
Apps Help Center: https://support.google.com/a/answer/2644334
Apps Contact Page: https://support.google.com/a/answer/2644334#contact=1
I am developing an application in Java using Google App engine. I have Google Contacts CardDAV API to access contacts.
How would I configure my project to access the contacts information. I googled but there isn't any proper guidance available for the same.
Help with example will be very appreciated.
Thanks in advance.
You could take a look at the CardDAV API specification in this article on Google Developers. You simply need to interact with it like any other RESTful API, issuing commands like GET, POST, DELETE. You can easily issue these requests by using the HttpURLConnection class (documentation here).