Skip to main content

#Salesforce128 人がディスカッション中

Learning, practicing, and moving forward—one Salesforce concept at a time. 🚀✨

#Salesforce#Trailhead Challenges #Trailhead
0/9000

 

The journey starts here! 🎯 Ready to earn badges, gain hands-on Salesforce skills, and grow every day. The journey starts here! 🎯 Ready to earn badges, gain hands-on Salesforce skills, and grow every day. One badge at a time! 🚀 #Trailhead #Salesforce #CareerGrowth #Trailblazer @WFD Partner Cohort: AJSD Academy LLP

 

 

#Salesforce Admin

0/9000

 

Started my Salesforce Trailhead journey today! 🚀 Looking forward to learning, earning badges, and growing my Salesforce skills.

Started my Salesforce Trailhead journey today! 🚀 

Looking forward to learning, earning badges, and growing my Salesforce skills. 💙 

#Salesforce #Trailhead #Learning @WFD Partner Cohort: AJSD Academy LLP

 

 

 

#Salesforce Admin

0/9000

 

Excited to share a new milestone in my Salesforce AI journey! 🌟I’ve officially earned the 2026 Agentblazer Innovator badge and unlocked the Expeditioner Rank on Trailhead! 🚀Spending time getting han

 

Excited to share a new milestone in my Salesforce AI journey! 🌟

I’ve officially earned the 2026 Agentblazer Innovator badge and unlocked the Expeditioner Rank on Trailhead! 🚀

Spending time getting hands-on practice with Salesforce Agentforce has been an incredible experience—from configuring autonomous agents to testing real-world sales and service scenarios. Proving skills through hands-on practice to build business-ready AI solutions is super rewarding.

Continuous learning and staying ahead with autonomous AI tools is key to driving measurable business outcomes. Onward to the next milestone! 🏔️✨ 

Thank you Trailhead, Thank you

@Tushar Jadav to provide support for my question.

#Salesforce #Agentforce #Agentblazer #Trailhead #AI #ContinuousLearning #SalesforceAI

0/9000

Welcome to the #TrailblazerCommunity! 👋 Take a moment to introduce yourself below. 💙 

 

Tell us all about YOU:

What are you passionate about? 

What are you looking to learn? 

Where are you located? 

 

Feel free to connect with others in the thread! 👇 

 

UPDATE: To mute this post, click on the arrow on the top right then "Mute."

2,011 件のコメント
  1. 昨日、1:47

    This would be a great place to introduce yourself and start making connections in the Salesforce community. I’d keep it friendly and focused on the intersection of Salesforce, marketing, ecommerce, and business processes.

    Hi everyone! 👋 I’m Angela, and I’m excited to be part of the

    #TrailblazerCommunity

    !

    I’m located in the Wausau, Wisconsin area and have a background in digital marketing, ecommerce, and business operations. My interest in Salesforce really took off when I had the opportunity to work on the business side of a Salesforce implementation. I realized how much I enjoy connecting business needs, technology, processes, and customer experience.

    I’m currently building my Salesforce skills through Trailhead, have earned Agentblazer Champion status, and am working toward the Salesforce Administrator certification.

    I’m especially interested in learning more about Salesforce consulting, administration, marketing, ecommerce, and automation. I’d also love to connect with other Trailblazers and learn from your experiences!

    Excited to be here! 💙

0/9000

I'm new to the Trailblazer Community and am not sure if this is the appropriate place for this question.  We are exploring Salesforce for our organization and I'm curious about anyone whose migrated from D365 to Salesforce.  Specifically in the Institutional Asset Management industry.  Any feedback you can share or would you be willing to connect?  

 

#Salesforce

0/9000

Hi everyone, 

 

I'm integrating Meta WhatsApp Cloud API → Salesforce Apex REST using a Salesforce Site.

The Apex REST endpoint works correctly when tested through Postman, and the same Meta webhook works successfully when pointed to a Render

endpoint. 

 

However, when Meta sends the real WhatsApp webhook to the Salesforce Site endpoint, the Apex @HttpPost method does not appear to execute. The endpoint is publicly accessible and the Meta messages webhook is subscribed. 

 

Are there any Salesforce-specific limitations, security settings, Guest User considerations, or other requirements for receiving external webhooks such as Meta WhatsApp directly through a Salesforce Site/Apex REST endpoint? 

 

Any guidance or known considerations would be appreciated. 

 

#Salesforce  #Integration

1 件の回答
  1. 8月17日 15:04

    Hi Rangadas - the pattern you describe (works from Postman and Render, but Meta's real webhook to the Site never reaches @HttpPost) almost always comes down to one thing: Salesforce is returning a redirect (a 302), and Meta - unlike Postman or a Render test - does not follow redirects, so the POST body is dropped and your Apex never runs. 

     

    Why the Site redirects, and what to check: 

     

    1. Guest user Apex class access (the most common cause). For a public Site, the Site's guest user profile must have the Apex class explicitly enabled (Site > Public Access Settings > Enabled Apex Class Access > add your class). If it's missing, Salesforce redirects the unauthenticated request toward login (a 302), which Meta silently drops - looking exactly like 'the method didn't execute'. Postman/Render either followed that redirect or you were authenticated, which is why it seemed to work there. 

     

    2. Prove it's a redirect. Hit the exact Site endpoint with curl -i (or Postman with 'follow redirects' turned off): curl -i -X POST

    https://<yoursite>/services/apexrest/<yourmapping>

    . If you see a 302 with a Location back to a login page, that's your smoking gun. 

     

    3. Exact URL + trailing slash. Make sure Meta calls the full Site path

    https://<site>/services/apexrest/<urlMapping>

    with no trailing-slash mismatch - Site URL rewriting can 301/302 on canonical differences. 

     

    4. Re-verify the GET handshake against the Site itself. Meta's initial verification is a GET with hub.mode / hub.challenge / hub.verify_token that must echo hub.challenge back. If your class only has @HttpPost, or you only verified while pointed at Render, add an @HttpGet that returns the challenge and re-subscribe against the Site URL. 

     

    5. Respond fast, process async. Meta expects a quick 200; do the heavy work in a Queueable or @future so you don't hit the timeout and trigger retries. 

     

    My money's on #1 - grant the guest user the class and re-test with the redirect-revealing curl. Also confirm the Site is Active and 'Require Secure Connections (HTTPS)' is on. 

     

    Hope that cracks it!

0/9000

Hi Trailblazers,

I’m currently working on the Trailhead module “Deploy an Agent in Slack.”

As part of the exercise, I’m trying to find the Agent Request under Tools & Settings → Organization Settings → Salesforce →Agentforce. However, when I open Agentforce, the Needs Review tab shows “0 requests” and “No requested agents.”

I have attached a screenshot showing what I’m seeing.

Could someone please help me understand:

  • Why is the Agent Request not appearing?
  • Is there any additional setup or permission required?
  • Do I need to complete any specific step in the Trailhead module before the request appears?

Any guidance would be greatly appreciated. Thank you!  

Unable to Find Agent Request in Agentforce – “Deploy an Agent in Slack”

 

 

 

#Salesforce  #Trailhead  #Slack  #AgentforceBuilder

0/9000

Hi Everyone,

I’m not able to see the product under the category when I try to add it to a Quote through Browse Catalogs, even though the product is active and assigned to an active Pricebook that is aligned with the Quote’s Pricebook.

Could someone please help me check if I’m missing any configuration or setup?

Thanks in advance! 

 

#Salesforce  #Revenue Cloud  #Salesforce Revenue Cloud

1 件の回答
0/9000

Hello Trailblazer Community, 

 

I am completely locked out of my Salesforce Developer Edition org. Every time I attempt to log in, I am met with a core system internal server error page. 

 

To make matters worse, I am completely blocked from getting help. When I go to Salesforce Support to open a ticket, there is no manual case creation option available

. The help portal forces me to use the Agentforce agent. Agentforce falsely claims and confirms that it has "submitted a case" for me, but no case number is generated, no confirmation email is sent, and no case is actually created. I am trapped in a loop where I cannot log in and cannot manually contact support. 

 

Could a Salesforce Community Manager or Support Agent please review the backend logs for this platform exception and escalate this to the engineering team? Here is the exact error code from my login screen:

  • Error ID: 1320266164-236886 (-1239726991)

I have already tried clearing my browser cache, utilizing an Incognito window, and testing alternative browsers, but the same server error persists. Any assistance in getting this logged internally would be greatly appreciated! 

 

#TrailblazerCommunity  #Salesforce  #Support Ticket  #Support  #Service & Support  #Developers Edition  #Developer Edition Account

2 件の回答
0/9000