Situation:
Users can access their google docs by an external link on a website. Now they first have to login to view their documents.
Problem:
I want that the users automaticly login on Google Docs
I've the username and password stored in a dabasase..
What is the best way to solve this problem?
...
everythings works fine with uploading a word document. It's converts correctly to a google document, but when i upload a .xls a throws the error: could not convert document.
This is the code i use:
$type = "application/vnd.ms-excel";
$xml = "--END_OF_PART\r\n".
"Content-Type: application/atom+xml;\r\n\r\n". ...
Hi I'm trying to show an overview of data but am having trouble doing filters/sorts.
Here is a data set:
Name Date Points
Bob 10/20 10
Ruth 10/20 5
Joe 10/20 2
Bob 10/21 20
Ruth 10/21 23
Joe 10/21 16
I'm trying to have an overview that contains some following columns
Name Last Updated ...
Hey all,
I'm pretty new to SalesForce and their Apex language. I've been reading some documentation and tried the integration between Google and SalesForce.
I'm wondering is it possible to emulate an auth token from google to SalesForce?
I'm trying to read a google spreadsheet and then fill up a SalesForce object automatically. The us...