Some Bridge examples don't work

I got my Yun for a week now an I'm quite confused about some examples working while others are not.

  • I made a working google spreadsheet datalogger
#include <Process.h>

void setup()
{
  Bridge.begin();   // Initialize the Bridge
}

void loop()
{
  int value = 3;
 
  Process p;
  p.runShellCommand("curl \"https://docs.google.com/forms/d/1eiv8WtiVlrprazWh6UBarUWyglHIv3e9v61wODXIMT4/formResponse?draftResponse=%5B%5D%0D%0A&entry.1275390141=" + String(value) + "&pageHistory=0\" -k");
  while(p.running()); 
  delay(2000);                
  
}
  • I succesfully ran the Console Pixel example

BUT

Some examples that didn't work:
-Http Client

  • Datalogger
    (although I went trough every single setting)

It's just that when I open my serial window nothing shows up...

Help would be appriciated

Let's tackle HttpClient: which port have you selected? Serial (COM or /dev/tty...) or network? Is you Yun configured to access internet? (ie: you configured it to connect to your home wifi)

Hi,

I am connected to the internet, but I can not connected to Temboo and Google Spreadsheet, ..etc.

Any ideas?

Franc