error: invalid suffix "a7d26811" on integer constant

hey iv been using arduino for a while now so i have a fair understanding of how it goes, however im working on a project and when trying to make a tiny addition to my already functional code these errors come up:

error: invalid suffix "a7d268114e0aebf94faa42afe52ba6d02890a01" on integer constant
error: expected constructor, destructor, or type conversion before '(' token

these two errors both relate to one line of code : get (v2/devices/0a7d268114e0aebf94faa42afe52ba6d02890a01/activate);

im using the xively library to send sensor readings to an account at xively, can anyone be soo kind to help my out here. oh and that line of code is in the global space/scope

that line of code is in the global space/scope

Sorry but I don't understand that. Perhaps if you posted your whole program of a smaller one that exhibits the problem.....

It looks like a fairly obvious case of an invalid suffix, but I'm only saying that because my crystal ball is broken.

by global space i mean it is not a part of the setup code or in any loops, here is a piece of my code, the entire thing is 300 lines of code so i wont post all. its the last line of this piece of code, everything else before it worked fine before

#include <SPI.h>
#include <WiFi.h>
#include <HttpClient.h>
#include <Xively.h>

char ssid[] = "dlink"; // your network SSID
//char pass[] = "A1349AB8EB"; // your network password (use for WPA, or use as key for WEP)
//int keyIndex = 0; // your network key Index number (needed only for WEP)
int status = WL_IDLE_STATUS;

// Your Xively key to let you upload data
char xivelyKey[] = "k3blloHCZKJ4HDlBO4ly7Vxl6sRa1DHxXXZIc2LumEl0B5Tm";
//your xively feed ID
#define xivelyFeed 2103714570

//datastreams
char scaleSensorID[] = "confirmation_signal";
char motorID[] = "feed_signal";

#define sensorPin 3 //this is the pin monitored to upload to xively
#define motorEnable 9 //signal to enable the motor
#define motor1APin 8 // motor direction control pin
#define motor2APin 11 // motor direction control pin
#define confirmIn 6 // confirmation input signal from scale sensor
#define confirmOut 5 // this feeds into the sensorPin
#define scaleSensorPin A0 //pin that the scale sensor is attached to
#define switchPin 2 //input from the switch

// Define the strings for our datastream IDs
XivelyDatastream datastreams[] = {
XivelyDatastream(scaleSensorID, strlen(scaleSensorID), DATASTREAM_FLOAT),
XivelyDatastream(motorID, strlen(motorID), DATASTREAM_FLOAT),
};
// Finally, wrap the datastreams into a feed
XivelyFeed feed(xivelyFeed, datastreams, 2 /* number of datastreams */);

WiFiClient client;
XivelyClient xivelyclient(client);

get(v2/devices/0a7d268114e0aebf94faa42afe52ba6d02890a01/activate);

get(v2/devices/0a7d268114e0aebf94faa42afe52ba6d02890a01/activate);

What's that?

What happened to the code tags?

You may need some quotes:

 get("v2/devices/0a7d268114e0aebf94faa42afe52ba6d02890a01/activate");

Otherwise the compiler sees it as one big hit of division.

ok maybe i should have been a bit more clear: get("v2/devices/0a7d268114e0aebf94faa42afe52ba6d02890a01/activate");
thats a command (if thats the rite name for it) to send data to a device at xively.com and the long alpha numeric symbols is the passcode to activate the device at xively.com

That's OK, but missing out the quotes like you did earlier means something different to the compiler.