GAE datastore admin page is blank - google-app-engine

I have an app in GAE and since ever the DataStore Admin link, on the left, gives me a blank page. I noticed this is a bug because when checking, recently, DataStore Admin link, for another app, it properly shows a web page.
Expected: After enabling Data store admin link, over in Applications Settings, to actually have Datastore Admin page working. I tried to contact Google but they request me to be a Silver account — this is clearly a bug. I can upload a video if needed.

I had this problem, and I fixed it by re-enabling third party cookies. You might try clearing cache and cookies and trying another browser as well.

Related

How to fix site functionality caching?

I'm using google cloud platform to serve a website. Whenever I update the website (create a build from the terminal and upload it to the Google bucket), users have been reporting site breakages until they hard refresh in browser or clear their caches manually.
Is there a way to configure the bucket to prevent this from happening?
Just to clarify, it's not images/files that are being cached, the whole site stops working when the bucket is updated until a user hard reloads the page in their browser

App Engine - How to Clear Cookie

I can't manage to clear the cookies in my Google app engine SDK on Mac OS. Basically every time i need to upload an app which is related to a different user I need to specify the --no_cookie flag and be redirected to an authentication page which doesn't no overwrite the existing cookie.
I have tried by clearing up the cookies in Chrome but it seems the cookies used by app engine are stored somewhere else.
It seems the only way is to delete the
/Users/<username>/.appcfg_oauth2_tokens
file

Why GAE application is missing in Google Developers Console?

One of my Google App Engine application somehow is missing in the Google Developers Console. I am sure it was there before.
Now If I click on the link from the Google App Engine / Application settings page, then it opens the page and returns the error You do not have sufficient permissions to view this page.
I am the only owner of GAE app and trying to access Google Developers Console under the same account.
How should I fix it?
The way to contact Google support would be to go to their PIT. This is the link. If there is a valid problem with your account, I believe they can contact you on there privately to get to the root of your issue.
As to your specific problem, I would try logging out of everything, trying a different browser, with both the new console and the old one.
have you tried accessing App Console with a Google Chrome incognito window ?
Check that billing configuration is OK or credit card not expired.
Regards
Paolo
I also encountered the same problem just now. It kept complaining "You do not have sufficient permissions to view this page" when I was accessing it on Chrome.
What I do is just switching to use Microsoft Edge with no Google account signed in. It works! I can now access the Credentials page again. =)
p/s: It's quite funny to have Google products work on Edge but not Chrome. =P
Actually there is a permission tab along with others(Overview,Api Auths) CLick on permission and in checkbox for your email as owner check it . It worked for me

Custom domain issue

We have added a custom domain to our appengine app. We followed the instructions when we made our changes, but apparently something went wrong and we can't find the way to fix it.
In our google apps appengine tab, the main URL specified is https://appid.appspot.com. That means, however, that all traffic from the domain mappings will be sent to the https url, and of course this won't work. I don't know how this https url ended up there as in the app engine admin console, the app url is http://appid.appspot.com.
We haven't find the way to change this url. We have tried to disable this app in google apps but it didn't work, it stays there.
in your app.ymal
-secure: optional
for more details:
http://code.google.com/appengine/docs/python/config/appconfig.html
scroll to Secure URLs

GAE Java Facebook server authentication double call

I am having a weird issue. I created an application on Google App Engine and have a Login with Facebook button on it, for which I am doing server side authentication.
I give the redirect_url, and facebook was calling the URL correctly with no issues. The session parameters that I set were being retrieved on the redirect call and everything was working fine.
Yesterday, I got a domain on godaddy and mapped it to my appspot account using google apps. Now when I click on Facebook login, I am getting two calls on the redirect uri, the first one carries the session varaibles and the session one doesn't. I am not very familiar with domain mapping and followed the steps on Google Apps.
Can anyone help me in the right direction on this.
it's a little out of date, but i documented some GAE to Facebook gotchas here:
http://javagwt.blogspot.com/2010/08/facebook-apps-on-app-engine-without-any.html
It may also help to read about naked domain mapping with godaddy, to make sure you're not getting bounced around. Even though you are mapped to your domain through google apps, you can try to put the redirect URL for facebook as yourappid.appspot.com - the redirect URL you provide, and the one in your facebook app settings must match.
My app, nimbits.com writes to facebook from GAE all of the time - the code is on github under server/facebook
https://github.com/bsautner/com.nimbits/tree/master/nimbits-tds/src/com/nimbits/server
Thanks for the answers bsautner and Michele. I finally figured out the issue. I have google ads on my website. The google ads was trying to parse the URL content and creating a second request for every request that I create. After removing the google ads, I get a single callback with session values retained. It all works now. The final output is this website - www.imagecrashers.com. I will be glad for any suggestions from the gurus here, regarding layout or api calls simplification. Thanks again to all.

Resources