Differences between revisions 99 and 364 (spanning 265 versions)
Revision 99 as of 2023-274 18:00:03
Size: 2643
Editor: 52
Comment:
Revision 364 as of 2024-261 13:37:38
Size: 3061
Comment: Revert spam
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
Are you ready to embark on a journey towards financial freedom and success? Imagine making a consistent ten to fifteen thousand dollars every single month by creating your first digital eBook product. It's not a dream—it's the promise of the 8 Figure Formula System. This is a sketch of UX and protocol considerations for a client which wishes to help users use gateways.
Line 3: Line 3:
🌟 Introducing the 8 Figure Formula System In every place where the UI would ask for a Jabber ID (most notably contact add, but possibly also invite to chatroom, create chatroom from 1:1 conversation, start voice/video call to non-contact, search view where a Jabber ID can be used, etc) it should scan the user's roster for JIDs which have `disco#info > identity[category=gateway]` and show some way of choosing to enter an identifier for that gateway instead of a Jabber ID. The simplest example might be a drop-down with `disco#info > identity[type]` and optional disambiguating `disco#info > idenity[name]` such as "sms (Cheogram)".
Line 5: Line 5:
In a world full of grandiose promises, this course stands out for its proven track record. In just the last 12 months, I've generated an astonishing eight figures in revenue by selling one digital eBook. And now, I'm sharing the exact formula that propelled me to this remarkable achievement. If a user has unambiguously selected a gateway, use https://xmpp.org/extensions/xep-0100.html#addressing-iqgateway to get a prompt:
Line 7: Line 7:
Here's what the 8 Figure Formula System will empower you to do: {{{
<iq type='get' to='gateway.tld' id='gate1'>
  <query xmlns='jabber:iq:gateway'/>
</iq>
Line 9: Line 12:
1. 📘 Create Your eBook: We'll guide you through the process of creating an eBook from start to finish.
2. 🚀 Master eBook Marketing: Discover the secrets to effective eBook marketing that will set you up for success.
3. 🚀 Launch Like a Pro: Learn how to launch your eBook with precision and impact.
4. 🧩 Funnel Integration: Understand how to seamlessly incorporate your eBook into a sales funnel for maximum results.
5. 🎧 Audiobook Conversion: Explore the valuable skill of converting your eBook into an audiobook, expanding your reach and income potential.
<iq type='result' from='gateway.tld' id='gate1'>
  <query xmlns='jabber:iq:gateway'>
    <desc>
      Please enter the Whatever of the
      person you would like to contact.
    </desc>
    <prompt>Whatever</prompt>
  </query>
</iq>
}}}
Line 15: Line 23:
But wait, there's more! Enroll today and you'll receive two incredible bonuses worth a total of $2,000: This text may then be used as part of the UX as makes sense to help the user feel comfortable. Getting a success here and not an error also means that `jabber:iq:gateway` can be used in the next step.
Line 17: Line 25:
💎 Bonus #1: Unlock the power of FREE Facebook traffic with our exclusive toolkit. Say goodbye to paid promotional ads and hello to organic growth.
💎 Bonus #2: Access additional free bonuses that will supercharge your journey towards financial success.
NOTE: it is also acceptable (and in some UX may be preferred or even necessary) to pre-emptively ask all gateways for the prompt, instead of only once one is selected.
Line 20: Line 27:
This opportunity is available for a limited time—only today and for the next 48 hours at a discounted rate that you won't want to miss. If an identifier is (or might be, depending on UX) one for a particular gateway, use the following procedure to map it to a Jabber ID and then perform the in-context relevant action on that Jabber ID as though it had been entered directly:
Line 22: Line 29:
🔗 https://warriorplus.com/o2/a/cxjsvx/0  1. If a prompt was got for `jabber:iq:gateway` above then use that protocol to finish resolution:
{{{
<iq type='set' to='gateway.tld' id='gate2'>
  <query xmlns='jabber:iq:gateway'>
      <prompt>(555) 123-4567</prompt>
  </query>
</iq>
Line 24: Line 37:
👉 Don't delay, because this could be the decision that changes your life forever. Click the link above and seize your chance to join the ranks of successful eBook creators who are enjoying the benefits of passive income. <iq type='result' from='gateway.tld' id='gate2'>
  <query xmlns='jabber:iq:gateway'>
    <jid>+15551234567@gateway.tld</jid>
  </query>
</iq>
}}}
 2. If an error is received in response to `jabber:iq:gateway` protocol, print the error message to the user and allow them to try again. This allows the gateway to provide useful feedback about format errors to the user.
 3. If an error was received in response to fetching the `jabber:iq:gateway` prompt, then the gateway does not support this protocol. Look for a `disco#info > feature[var="jid\20escaping"]` and if found construct a JID using XEP-0106 escaping on the user input concatenated with `@gateway.tld`
 4. If `jabber:iq:gateway` and `jid\20escaping` are both unsupported, replace any `@` in the user input with `%` and concatenate `@gateway.tld`
Line 26: Line 47:
🌟 Real Results, Real Students NOTE: If the result of this procedure is a string that is not a valid Jabber ID, it should be rejected just as if a user manually keyed in an invalid Jabber ID.
Line 28: Line 49:
But don't just take my word for it. Over 154 students from around the world have already benefited from this course, creating their first eBooks and generating passive income. Now, it's your turn.

👉 Click the link above to get started. As soon as you enroll in the 8 Figure Formula System, you'll gain access to the knowledge and tools that can turn your financial dreams into reality.

🚀 This Is Your Moment

Your journey to eight figures starts here. Take action today, and I'll see you on the inside.

To your success,
Line 38: Line 50:
CategoryCategory CategoryHomepage

This is a sketch of UX and protocol considerations for a client which wishes to help users use gateways.

In every place where the UI would ask for a Jabber ID (most notably contact add, but possibly also invite to chatroom, create chatroom from 1:1 conversation, start voice/video call to non-contact, search view where a Jabber ID can be used, etc) it should scan the user's roster for JIDs which have `disco#info > identity[category=gateway]` and show some way of choosing to enter an identifier for that gateway instead of a Jabber ID. The simplest example might be a drop-down with `disco#info > identity[type]` and optional disambiguating `disco#info > idenity[name]` such as "sms (Cheogram)".

If a user has unambiguously selected a gateway, use https://xmpp.org/extensions/xep-0100.html#addressing-iqgateway to get a prompt:

<iq type='get' to='gateway.tld' id='gate1'>
  <query xmlns='jabber:iq:gateway'/>
</iq>

<iq type='result' from='gateway.tld' id='gate1'>
  <query xmlns='jabber:iq:gateway'>
    <desc>
      Please enter the Whatever of the
      person you would like to contact.
    </desc>
    <prompt>Whatever</prompt>
  </query>
</iq>

This text may then be used as part of the UX as makes sense to help the user feel comfortable. Getting a success here and not an error also means that `jabber:iq:gateway` can be used in the next step.

NOTE: it is also acceptable (and in some UX may be preferred or even necessary) to pre-emptively ask all gateways for the prompt, instead of only once one is selected.

If an identifier is (or might be, depending on UX) one for a particular gateway, use the following procedure to map it to a Jabber ID and then perform the in-context relevant action on that Jabber ID as though it had been entered directly:

1. If a prompt was got for `jabber:iq:gateway` above then use that protocol to finish resolution:

<iq type='set' to='gateway.tld' id='gate2'>
  <query xmlns='jabber:iq:gateway'>
      <prompt>(555) 123-4567</prompt>
  </query>
</iq>

<iq type='result' from='gateway.tld' id='gate2'>
  <query xmlns='jabber:iq:gateway'>
    <jid>+15551234567@gateway.tld</jid>
  </query>
</iq>

2. If an error is received in response to `jabber:iq:gateway` protocol, print the error message to the user and allow them to try again. This allows the gateway to provide useful feedback about format errors to the user. 3. If an error was received in response to fetching the `jabber:iq:gateway` prompt, then the gateway does not support this protocol. Look for a `disco#info > feature[var="jid\20escaping"]` and if found construct a JID using XEP-0106 escaping on the user input concatenated with `@gateway.tld` 4. If `jabber:iq:gateway` and `jid\20escaping` are both unsupported, replace any `@` in the user input with `%` and concatenate `@gateway.tld`

NOTE: If the result of this procedure is a string that is not a valid Jabber ID, it should be rejected just as if a user manually keyed in an invalid Jabber ID.


CategoryHomepage

GatewayContactUX (last edited 2024-266 21:54:24 by ip231)