Problem adding URL

I am trying to do an add via URL scheme, adding the following url: bear://x-callback-url/open-note?id=AD610577-3A3F-4F8F-969B-45D0021D4563-6113-0000086887138129 with the &url=bear://x-callback-url/open-note?id=AD610577-3A3F-4F8F-969B-45D0021D4563-6113-0000086887138129. My entire string is:

goodtask3://add?title=Test&url=bear://x-callback-url/open-note?id=AD610577-3A3F-4F8F-969B-45D0021D4563-6113-0000086887138129

The reminder adds fine but there is no URL listed. Ideas as to what might be wrong?
Thanks

Hi denrael,

To use URL in URL scheme, you need to encode the url if you're making it yourself. Normally if you use the app like Launch Center Pro, it'll do it for you.

For example, your URL should be something like bear%3A%2F%2Fx-callback-url%2Fopen-note%3Fid%3DAD610577-3A3F-4F8F-969B-45D0021D4563-6113-0000086887138129

You can use sites like below to encode/decode if needed.

https://meyerweb.com/eric/tools/dencoder/

Thanks!

Thanks, that was it. I had done an encode before but inadvertently encoded the entire url, not just the reference url. Appreciate the help.