Exclamation mark missing from facebook API name

My facebook api name contains an exclamation mark ( ! ). Whenever I transfer something to facebook via the API, the message contains the name of the API, but it removes the exclamation mark. Does anyone have an idea on how to display ! .

EDIT 1: Please see below image to better understand my problem. enter image description here

+7
source share
3 answers

The text of the “through” link on Facebook.com in the news feed or on the timeline is not filled with anything in your iOS application code or ShareKit configuration; this is on the application’s main settings page, available at https://developers.facebook.com/apps when logging in as the application administrator

For example, here are the settings of my application for a test application:

App settings page

And how the message appears:

sample post

If I changed the name of the application:

App settings page after change

Will appear with a symbol!

Sample post after change

+5
source

I've tried with "& # 33;" and "& # x21;" (without space and without quotes) and it working, can you try again?

EDIT


I think the problem lies in the method: - (BOOL)send from the SHKFacebook.m class. Make sure SHKMyAppName or your SHKItem information is encoded using SHKEncode, not SHKEncodeURL

+2
source

Have you tried using the '\' in front of the explanation icon, i.e.:

 APIKEY = "348geIb\!rgreg" 
0
source

All Articles