kolakube Well-known member Oct 6, 2020 #1 Trying to workout this small detail when creating new conversations over the API. I am sending this exact text over POST as the conversation title: You're in! Click to expand... ...but it renders as: You're; in! Click to expand... Which format does this text need to be sent in to render special characters on the forum properly?
Trying to workout this small detail when creating new conversations over the API. I am sending this exact text over POST as the conversation title: You're in! Click to expand... ...but it renders as: You're; in! Click to expand... Which format does this text need to be sent in to render special characters on the forum properly?
DeltaHF Well-known member Sep 19, 2021 #2 Did you ever figure this out? I'm facing the same issue. EDIT: Never mind, figured it out. I just wasn't properly decoding the string before sending it over in the curl request. Using html_entity_decode() worked: PHP: $message = html_entity_decode( $message ); Last edited: Sep 19, 2021 Upvote 0 Downvote
Did you ever figure this out? I'm facing the same issue. EDIT: Never mind, figured it out. I just wasn't properly decoding the string before sending it over in the curl request. Using html_entity_decode() worked: PHP: $message = html_entity_decode( $message );