Whenever I try to "insert" lines into a fusion table using the non sql method I get the following error: "We're sorry, a server error occurred. Please wait a bit and try again." I am authenticated and can insert using the sql insert statement, but this has low limits for length of insert so I am trying to use a different method.
function temp () {
var tableId = "<table id>";
var blob = Utilities.newBlob(['hi', 'how', 'are you'].join(','),
{type: "octet/stream"});
ret = FusionTables.Table.importRows(tableId, blob);
Logger.log([ret,"for id"])
}