• Thimo
  • NEWBIE
  • 0 Points
  • Member since 2012


  • Chatter
    Feed
  • 0
    Best Answers
  • 6
    Likes Received
  • 0
    Likes Given
  • 5
    Questions
  • 7
    Replies
It's bizarre. I'm using Pythons simple-salesforce module. Everything worked fine for months.

Today however, sometimes, my requests go through fine. Other times, I get a:

SalesforceAuthenticationFailed: INVALID_LOGIN: Invalid username, password, security token; or user locked out.

I've reset my token, refreshed my sandbox, tried connecting to both production and test - always the same outcome.

Every 10+ requests fail, then 1 goes through.

I feel this is definitely an issue with Salesforce, but have no idea how to get through to them.

Any help much appreciated.

Hi,

 

I want to send out emails from web to lead to the customer - which isn't that problem - but this email should include a unique trial license key. For the key management I would use a custom object, but I don't know how to connect the key to the email (and to this unique user), display it in the mail and send it out.

 

Does anyone have a simple solution for this?

 

 

Thanks in advanced

Thimo

Hi folks,


I just created a Task using the PHP Toolkit, with all appropritate Data:

      $aObject->OwnerId = $_sfUserId;
      $aObject->WhatId = $_sfAccountId;
      $aObject->WhoId = $_sfContactId;
      $aObject->Subject = "Angebot per E-Mail";
      $aObject->Description = $message;
      $aObject->ActivityDate = date("c");
      $aObject->Status = "Abgeschlossen";


But the Chatter doesn't display the change or the new Task.

What can I do?

Do I have to create a separate Chatter message?


Thanks for help!

Thimo

Hi folks,

 

I just created a Task using the PHP Toolkit, with all appropritate Data:

 

      $aObject->OwnerId = $_sfUserId;
      $aObject->WhatId = $_sfAccountId;
      $aObject->WhoId = $_sfContactId;
      $aObject->Subject = "Angebot per E-Mail";
      $aObject->Description = $message;
      $aObject->ActivityDate = date("c");
      $aObject->Status = "Abgeschlossen";

But the Chatter doesn't display the change or the new Task.

What can I do?

 

Do I have to create a separate Chatter message?

 

 

Thanks for help!

 

Thimo

Hi, could you please tell me, how to disable a single contact completly without deleting and e.g. not showing the emailadress and telefon number? (Enabling of the contact should only be able for the admins) Thanks!