adobe_connect_api 0.0.47.alpha → 0.0.48.alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/adobe_connect_api/version.rb +1 -1
- data/lib/adobe_connect_api.rb +4 -1
- metadata +1 -1
data/lib/adobe_connect_api.rb
CHANGED
@@ -123,7 +123,10 @@ class AdobeConnectAPI
|
|
123
123
|
puts "ACS: user created"
|
124
124
|
puts res.body
|
125
125
|
data = XmlSimple.xml_in(res.body)
|
126
|
-
data["principal"]["principal-id"]
|
126
|
+
principal_id = data["principal"]["principal-id"]
|
127
|
+
puts principal_id
|
128
|
+
return principal_id
|
129
|
+
|
127
130
|
end
|
128
131
|
|
129
132
|
# create a new meeting in Adobe Connect
|