• otv20
  • NEWBIE
  • 5 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 4
    Replies

Hi,

I have an external lookup in the Account object to an external object, I'm trying to get a value through this relationship
but I'm getting an error, is this possible? What I've tried is this:

ExternalObj__x.field

ExternalObj__r.field

externalLookupField__r.field

externalLookupField__x.field

 Any help would be appreciated it.

Thanks in advanced.

  • October 18, 2018
  • Like
  • 0
I'm trying to figure it out if it is possible to show a field from an external object in standard list view.
I have the relationship already but can't find a way to display the field.

Any help would be appreciated it.

Thanks in advanced.
  • July 12, 2018
  • Like
  • 0
I'm trying to figure it out if it is possible to show a field from an external object in standard list view.
I have the relationship already but can't find a way to display the field.

Any help would be appreciated it.

Thanks in advanced.
  • July 12, 2018
  • Like
  • 0
I am trying to connect to a Push Topic via the Salesforce Streaming API using Python. My application completes the initial handshake correctly, but then fails on the following connect call, with the error: "403::Unknown client".

My messages work as follows:

Handshake Request
{
    "channel":"/meta/handshake",
    "id":"1",
    "supportedConnectionTypes":["long-polling"],
    "version":"1.0",
    "minimumVersion":"1.0"
}
Handshake Response
{
    "channel":"/meta/handshake",
    "clientId":"xxx",
    "version":"1.0",
    "successful":true,
    "minimumVersion":"1.0",
    "id":"1",
    "supportedConnectionTypes":["long-polling"]
}
It's completed the handshake fine. And then...
Connect Request
{
    "channel":"/meta/connect",
    "clientId":"xxx",
    "id":"2",            
    "connectionType":"long-polling"
}
Connect Response
{
    "channel":"/meta/connect",
    "clientId":"xxx",
    "advice":{
        "reconnect":"handshake",
        "interval":500
    },
    "error":"403::Unknown client",
    "successful":false,
    "id":"2"
}
I have seen this issue here:
https://success.salesforce.com/issues_view?id=a1p30000000T0F0AAK

And read through the documentation, including:
http://www.salesforce.com/developer/docs/api_streaming/Content/DebuggingStreamingAPIApplications.htm

After reading this however, I am no closer to determining what the actual fault or problem is, or how to remedy it.

I have tried a lot of different things and am at a loss at how to get it to work. I am using this Bayeux client library https://github.com/dkmadigan/python-bayeux-client, with some custom amendments to get the authentication working.

Any help would be greatly appreciated.