Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

189
Views
Plaid linktoken and expiration are null in live server

I tried running this locally, and it works perfectly fine, but on the live server, there's no exception thrown and it returns linktoken and exception null.

public async Task<CreateLinkTokenResult> GetPlaidLinkToken()
{
    var linkToken = await _client.CreateLinkToken(new CreateLinkTokenRequest()
    {
        ClientId = _clientId,
        Secret = _secret,
        User = new CreateLinkTokenRequest.UserInfo
        {
            ClientUserId = _userContext.CurrentUser.UserId,

        },
        CountryCodes = new[] { "US" },
        ClientName = "TestClient",
        Products = new[] { "transactions" }
    });
    return new CreateLinkTokenResult
    {
        Expiration = linkToken.Expiration,
        LinkToken = linkToken.LinkToken
    };
}
{
  "data": {
    "linkToken": null,
    "expiration": null
  },
  "exception": null,
  "errorMessage": "",
  "statusCode": 200
}

This is the response I get in the live server: This is the response I get in the live server

over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

Very weird. This is a bit of a guess, but have you considered contacting the author of the SDK you're using? I noticed you tagged this with C# and .NET, which have community (unofficial) SDK support. According to our API documentation the link_token and expiration responses from /link/token/create are not nullable, so it should never be possible to get the results you're seeing from the API, which makes me think that potentially the problem could be happening at the SDK layer. Does the issue still happen if you don't use an SDK and just make raw POST requests?

If that doesn't resolve your problem, please feel free to file a Plaid support ticket.

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!