参照して頂くのは結構ですが、そのまま内容を丸ごとコピーするような行為は控えて欲しいです。一応時間を掛けて作っているので、その点はご考慮願いたいです。
Unkown property String.label
-
Create the Visualforce Page
チャレンジで提供されているVF Pageのコードが間違っているようです。
There seems to be a problem with the sample code.
What I can observe from code is, basically you are trying to display a string using apex:repeat. Apex:repeat takes list variable. If you want to display callVisionUrl and AccessToken just use simple outputText
<apex:page Controller="VisionController">
<apex:form >
<apex:pageBlock >
<apex:image url="http://metamind.io/images/generalimage.jpg">
</apex:image>
<br/>
Access Token:<apex:outputText value="{!accessToken}" /><br/>
<br/>
<apex:outputText value="{!callVisionUrl}" /><br/>
</apex:pageBlock>
<!-- <apex:pageBlock > -->
<!-- <apex:repeat value="{!callVisionContent}" var="prediction"> -->
<!-- <apex:outputText value="{!prediction.label}" />:<apex:outputText value="{!prediction.probability}" /><br/> -->
<!-- </apex:repeat> -->
<!-- </apex:pageBlock> -->
</apex:form>
</apex:page>
https://developer.salesforce.com/forums/?id=9060G000000UUByQAO
The "Find_a_Match.Id" resource can't be used as a merge field.
Resolved! It was the Find a Match step. by changing how records are stored it allowed me to use Find a Match as a resource:
https://trailhead.salesforce.com/trailblazer-community/download/file/0694S000002HdMPQA0
Unreadable Response in Charles Proxy
よく分からんけど文字化けみたい。
We couldn’t find a Profile named 'Custom: Support Profile'. Be sure you followed the instructions to create the custom profile.
Flow String too long
I haven't done anything ,just opened same page on next day and refreshed it & challenge finished
We can't find the Org with Workplace Command Center connected to your Trailhead account.
Bolinger Chelsea
I realized that I created the account under: https://developer.salesforce.com not https://developer.salesforce.com/promotions/orgs/workplace-command-center in case anyone else tried to set that up before getting to the step in the project :)
Identity connect Installation failed on Windows 2019 Server
we have figured it out why it was failing.
We were doing the entire process which is extracting zip file and running setup.bat with admin rights and that was causing the issue.
Solution - when we did all the above steps with local user without admin rights then it worked.