google-apps

Creating a Google Apps Script which Automatically Executes on Upload

不问归期 提交于 2019-12-06 01:40:40
I have an interesting fairly simple problem I am trying to solve but I am at a loss on the proper code to get this to working correctly. Basically, I have an very old local application running which allow me to print a receipt of a transaction. I have the ability to enable this receipt to be printed to a specific file within a specific directory on my computer or I can set it up to print out automatically to a printer on my computer. Currently I print the data out to a file, then copy the contents of that file and paste it into a word document template and then manually go through and format

Cannot deliver email to Google Apps address; Gmail receives the same email fine

我的未来我决定 提交于 2019-12-06 00:00:18
I have a Drupal site with the Webform module installed to send out emails to a small group of people with Google apps accounts. It used to work; now, with nothing having been changed, they do not receive the messages at all. They are not in spam; they just never arrive period. However, if I put in my own personal Gmail address as a recipient, I receive it fine... not in spam or anything. I thought maybe the problem was that my domain (hosted at MediaTemple) didn't have an SPF record, so I added one: v=spf1 include:spf.mail01.mtsvc.net include:_spf.google.com ~all However, Google still doesn't

Add domain to Google Appengine w/o using Google Apps for Business

£可爱£侵袭症+ 提交于 2019-12-05 23:47:47
问题 I've tried to add a custom domain for my app, my own domain, instead of default example.appspot.com . But just figured out that Google don't allow to use Google Apps for free anymore. Only Google Apps for Business. Actually I don't need anything provided by Google Apps for Business, just need to use my own domain for my GAE project. But seems that now there no way to use custom domain w/o signin for Google Business account? and paying $50 a year. Is it correct? Is there any other way to add

Can not add google account in Google App Emulator

﹥>﹥吖頭↗ 提交于 2019-12-05 21:21:02
I am trying to implement my first Android C2DM aplication. I have difficulty in adding a google account. My machine is behind a proxy, but I have added an APN with the proxy,port,username,password details. I can go to the google account page using a browser, I have tried the http and https sites and I am able to access. But when I try to add a google account by going to settings-> Accounts and Sync-> Add Account->google->Already have a google account->signin->give details...It gives me this message.. Error message is "Cant establish a reliable data connection to the server" When i used wire

Can't add domain for push notifications in google developers console

孤街浪徒 提交于 2019-12-05 19:24:00
问题 I've created a new application in google developers console, my app is using the Google Calendar API and I want to be able to get push notifications on changes in the calendar. I've added and verified my domain in Web Master Tools, when I try to add the domain in the push notifications section in the console I get an error: Error You do not have access to the following domain: *** I tried to do that with another application (with different google account), and I encounter the same problem, It

How do you add a Google Calendar to all users for a domain?

若如初见. 提交于 2019-12-05 19:20:11
I am having trouble figuring out how to add a calendar to all of a domain's users' CalendarList . So far I can successfully create the Calendar and create a domain wide ACL but I don't know how to insert the calendar into domain users' lists. Using the ruby client API it looks something like this: client = Google::APIClient.new service = client.discovered_api("calendar", "v3") calendar_response = JSON.parse(client.execute(:api_method => service.calendars.insert, :body => JSON.dump({"summary" => "events"}), :headers => { "Content-Type" => "application/json" }).response.body) rule = { "scope" =>

Google App Engine on Google Apps Domain

…衆ロ難τιáo~ 提交于 2019-12-05 19:01:45
问题 I'm having trouble getting my domain pointed to my website hosted with google app engine. Here's the background... take care to separate the concepts of "google apps" (domain hosting, email, etc.) and "google app engine" (website framework). I have a domain that's using Google Apps for Your Domain, let's call it company.com. So my login for my google apps account is bob@company.com. I have a different domain that is aliased back to my google apps account, let's call it mycompany.com. It's

App Engine naked domain redirect + SSL

 ̄綄美尐妖づ 提交于 2019-12-05 18:23:49
We are trying to add naked domain redirect to our custom domain. I followed the instructions on https:/ /support.google.com/a/answer/2518373?hl=en but when I change the domain to redirect from: http:/ /app-id=,domain=.example.io (which was auto filled) to http://www.example.io , I get an error saying: """ Server error We are unable to process your request at this time, please try again later. """ I'm not able to dig any deeper into the error or what is happening. My A records on the DNS provider point to the IP address specified by the App Engine. I also have SSL on this app, and https://www

Non-admin read-only access to Google Admin SDK

家住魔仙堡 提交于 2019-12-05 18:23:18
In a post on the Google Developers blog from September 23, 2014, it says: Read access to all domain users Historically, only admins have been able to access the data in the Admin SDK. Beginning today, any user (not just admins) will now be able to call the Directory API to read the profile of any user on the domain (of course, we will respect ACLing settings and profile sharing settings). However, despite checking every Google Apps Admin setting I can find, my calls calls to the Directory API fail for non-admin users. Condensed code: params = { client_id: XXXXXX, scope: 'https://www.googleapis

Rails ActionMailer w/ Devise + Google Apps in Development Mode

Deadly 提交于 2019-12-05 13:26:01
I'm trying to configure ActionMailer to send mail from Devise in development mode with my Google Apps account. I've added the following to my config/environments/development.rb file, but it looks like mail is not being sent. Note: this is for Google Apps, not Gmail (but the Gmail servers should work -- they do in my mail client). Anything jump out as strange in my config? config.action_mailer.delivery_method = :smtp config.action_mailer.smtp_settings = { :enable_starttls_auto => true, :address => "smtp.gmail.com", :port => 587, :domain => "mydomain.com", :authentication => :login, :user_name =